setMesurement() ;

function setMesurement()
{
	if( navigator.appName == "Microsoft Internet Explorer" )
    {
		var y_px = document.body.clientHeight ;
	}
    else if ( navigator.appName == "Netscape" )
    {
		var y_px = window.innerHeight ;
	}
	
	document.getElementById("divGlobal").style.height = y_px + "px" ;
	
	setTimeout("setMesurement()",1000) ;
}
