	function PageInit()
		{
			//更换网页标题
			if (typeof(document.all["HzPageTitle"]) != "undefined")
			{
				document.title = document.all["HzPageTitle"].innerText;
			}

			//检测分辨率，若是800*600，则将HzMoveDiv的left设置为0
			if (window.screen.width == 800 && typeof(document.all["HzMoveDiv"]) != "undefined")
			{
				document.all["HzMoveDiv"].style.left = 0;
			}
			
			//隐藏位置条的图片
			if (typeof(document.all["HzMoveDiv"]) != "undefined")
			{
				document.all["HzMoveDiv"].style.background = "url('')";
				var intWidth = document.all["HzMoveDiv"].style.width;
				intWidth = intWidth.substring(0, (intWidth.length -2));
				document.all["HzMoveDiv"].style.width = intWidth - 44; //减去为了显示位置图片而增大的宽度
				document.all["HzMoveDiv"].style.visibility = "visible";
			}
		}

