﻿﻿// iframe resize
function iecompattest()
{
  return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}
function cmdResizeIfr()
{
    if (document.getElementById('ifr') != null)
    {
    	if (self.innerHeight)
    		var ifrHeight=self.innerHeight - 170;
    	else
        	var ifrHeight=iecompattest().clientHeight - 170;
        document.getElementById('ifr').style.height=ifrHeight + 'px';
        document.getElementById('ifr').style.width='984px';
    }
    if (document.getElementById('ifr2') != null)
    {
    	if (self.innerHeight)
    		var ifrHeight=self.innerHeight - 275;
    	else
        	var ifrHeight=iecompattest().clientHeight - 275;
        document.getElementById('ifr2').style.height=ifrHeight + 'px';
        document.getElementById('ifr2').style.width='984px';
    }
}