function SetLayerLeft() 
{  //reloads the window if Nav4 resized
	var width;
	top2 = 553;
  	with (navigator) 
	{
		if ((appName=="Netscape")&&(parseInt(appVersion)>=4)) 
		{
			width = window.innerWidth;
			itop = 555;
			left2 = 370;
		}
		else
		{
			retPos = appVersion.search("MSIE 7")
			if ( document.body != null )
			{
				itop = 550;
				left2 = 377;
  				width = document.body.offsetWidth;
			}
			if (retPos < 0)  // IE6 and below
			{
				left2 = left2-18;
			}
		}
		if (width <= 1024) width = 1024;
  		myElement = document.getElementById("page1");
  		if ( myElement != null ) {
			myElement.style.left = ((width)/2)+left2+"px";
//			myElement.style.left = left2+"px";
  			myElement.style.top = top2+"px";
		}
	}
}
SetLayerLeft();
