function setPageSize(){
var pintHeight;
if (self.innerHeight) // all except Explorer
{
	pintHeight=(self.innerHeight-106);
	document.getElementById('hms_main').style.height=pintHeight+'px';	
	
}
else if (document.documentElement && document.documentElement.clientHeight)	// Explorer 6 Strict Mode
{
	pintHeight=(document.documentElement.clientHeight-105);
	document.getElementById('hms_main').style.height=pintHeight;
}
else if (document.body) // other Explorers
{
	pintHeight=(document.body.clientHeight-105);
	document.getElementById('hms_main').style.height=pintHeight;
}
}

