function KB_keepItInIE(theName,theWantTop,theWantLeft) {
	theRealTop=parseInt(document.body.scrollTop)
	theTrueTop=theWantTop+theRealTop
	document.all[theName].style.top=theTrueTop
	theRealLeft=parseInt(document.body.scrollLeft)
	theTrueLeft=theWantLeft+theRealLeft
	document.all[theName].style.left=theTrueLeft
}
function hiddenDiv(divobj){
	document.all[divobj].style.display = "none";
}

//var wid=5;
//var hgt=100;
//var delta=125;

//打印显示的Div
	/********左边*******/
//document.write("<div id=\"_huangshan\" style=\"position:absolute; left:"+wid+"px; top:"+hgt+"px; width:100px; height:300px; z-index:25\"><center>");
//document.write("<OBJECT classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0\" width=\"100\" height=\"300\">\n");
//document.write("<PARAM NAME=movie VALUE=\"/images/huangshan_100_300.swf\">\n");
//document.write("<PARAM NAME=quality VALUE=high>\n");
//document.write("<EMBED src=\"/images/huangshan_100_300.swf\" quality=high TYPE=\"application/x-shockwave-flash\" PLUGINSPAGE=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\"></EMBED>\n");
//document.write("</OBJECT>\n");
//document.write("</center>");
//document.write("<a style='color:#FF0000;text-decoration:underline;cursor:hand' onclick='closeFlash(\"_huangshan\");return false;'>");
//document.write("关闭");
//document.write("</a></div>");
	/********右边*******/
//document.write("<div id=\"_xianhe\" style=\"position:absolute; left:"+(screen.availWidth-wid-delta)+"px; top:"+hgt+"px; width:100px; height:300px; z-index:25\"><center>");
//document.write("<OBJECT classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0\" width=\"100\" height=\"300\">\n");
//document.write("<PARAM NAME=movie VALUE=\"/images/xianhe_100_300.swf\">\n");
//document.write("<PARAM NAME=quality VALUE=high>\n");
//document.write("<EMBED src=\"/images/xianhe_100_300.swf\" quality=high TYPE=\"application/x-shockwave-flash\" PLUGINSPAGE=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\"></EMBED>\n");
//document.write("</OBJECT>\n");
//document.write("</center>");
//document.write("<a style='color:#FF0000;text-decoration:underline;cursor:hand' onclick='closeFlash(\"_xianhe\");return false;'>");
//document.write("关闭");
//document.write("</a></div>");

//必须重写moveDiv
//function moveDiv(){
//	KB_keepItInIE("_huangshan",hgt,wid);
//	KB_keepItInIE("_xianhe",hgt,screen.availWidth-wid-delta);
//}

//这句也要重写
//onscroll=moveDiv;