var iecheck=document.all&&document.getElementById
if (iecheck){
	document.write('<div id="scrolldiv" style="width:100%;height:100%;overflow:auto">')
}
else {

	function onResizeHandle()
	{
	 window.location=window.location
	}

	window.onResize=onResizeHandle;
	window.onresize=onResizeHandle;

	if (parseInt(navigator.appVersion)>3) {
	 if (navigator.appName=="Netscape") {
	  winW = window.innerWidth;
	  winH = window.innerHeight;
	 }
	 if (navigator.appName.indexOf("Microsoft")!=-1) {
	  winW = document.body.offsetWidth;
	  winH = document.body.offsetHeight;
	 }
	}
	document.write('<div id="scrolldiv" style="width:100%;height:' + (winH-43) + ';overflow:auto">')
}

