// Begins
function toResize() {
reduceValue = 20 
forIE = navigator.appVersion.indexOf("MSIE");
forNS = navigator.appName

if ( forNS == "Netscape" ) {reduceValue = 120} 
	else
		{ if ( forIE != -1 ){ reduceValue = 20 }
		}	
	
	window.moveTo(0,0);
	if (screen.height) {
	scrheight = screen.height - reduceValue
		scrwidth = screen.width - 10
	window.resizeTo(scrwidth,scrheight)
	}
	else
	{
	window.resizeTo(800,600)
	}

}
//Ends


