﻿
document.writeln("<div id=\"rdiv\" ");
document.writeln("  style=\" background-image:url(\'Images\/advertise\/advertise.jpg\'); width:162px; height:109px; float:right; position:absolute\">   ");
document.writeln("<div style=\" float:right; font-size:10px; margin-right:3px; margin-top:3px;cursor:hand\" onclick=\"divClose(\'rdiv\')\">关闭<\/div>");
document.writeln("<\/div>");
document.writeln("<div id=\"ldiv\" ");
document.writeln("style=\" background-image:url(\'Images\/advertise\/advertise.jpg\'); width:162px; height:109px; float:left;position:absolute; \">   ");
document.writeln("<div style=\" float:right; font-size:10px; margin-right:3px; margin-top:3px;cursor:hand\" onclick=\"divClose(\'ldiv\')\">关闭<\/div>");
document.writeln("<\/div>");
var adWidth=163;var nowX=0;var nowY=100;var posX;var posY;function fadIni()
{var innerWidth=document.body.clientWidth;var innerHeight=document.body.clientHeight;var edge=(innerWidth-1000)/2;if(edge>adWidth)
{posX=edge+1000;}
else
{posX=innerWidth-adWidth;}
posY=100;}
function fadRefresh()
{var offsetX=posX+document.documentElement.scrollLeft-nowX;var offsetY=posY+document.documentElement.scrollTop-nowY;nowX=nowX+offsetX/5;nowY=nowY+offsetY/5;document.getElementById("rdiv").style.left="0px";document.getElementById("rdiv").style.top=(nowY+400)+"px";document.getElementById("ldiv").style.left=(document.body.clientWidth-adWidth)+"px";document.getElementById("ldiv").style.top=(nowY+400)+"px";floatID=setTimeout('fadRefresh()',20);}
function fadStart()
{fadIni();window.onresize=fadIni;window.onscroll=fadIni;fadRefresh();}
function divClose(div)
{document.getElementById(div).style.display="none";}
window.onload=fadStart;