document.write("
"); document.write(""); function FloatMove() { var FloatWidth=106; //广告宽度 var MainPageWidth=778; //页面主文件宽度 var OppTop=100; //离项端位置 if(document.body.offsetWidth>=MainPageWidth) { //-22是为了减去滚动条及边框的宽度 FloatLeft.style.left=(document.body.offsetWidth-6-MainPageWidth)/2-FloatWidth; FloatRight.style.left=(document.body.offsetWidth+6-MainPageWidth)/2+MainPageWidth; } else { FloatLeft.style.left=-FloatWidth; FloatRight.style.left=MainPageWidth; } FloatLeft.style.top=document.documentElement.scrollTop+OppTop; FloatRight.style.top=document.documentElement.scrollTop+OppTop; //setTimeout("FloatMove();",10); } FloatMove(); document.documentElement.onscroll=FloatMove; document.body.onresize=FloatMove;