window.onload = init;

function init(){
/*
	var vHeight = screen.height;
	var nHeight = vHeight - 385;
	var mozHeight = vHeight - 350;
	var iHeight = vHeight - 460;
*/

	var vHeight = screen.height;
	var nHeight = vHeight - 385;
	var mozHeight = vHeight - 350;
	var iHeight = vHeight - 260;


//  Mozilla
	var el = document.getElementById("IdContentPane");
	el.setAttribute("style", "min-height:"+mozHeight+"px;");

//  IE (Old hardcoded height was 390)
	var oStyleSheet=document.styleSheets[0];
// 	oStyleSheet.addRule(".HomeBodyInterior","height: "+nHeight+"px;");	
	oStyleSheet.addRule(".iframe","height: "+iHeight+"px;");
}