New Page 1 var isRight=true; var isDown=true; function init() { float(); } function float() { var top_u=parseInt(document.body.offsetHeight)-parseInt($("ad").style.height);; var top_l=0; var left_u=parseInt(document.body.offsetWidth)-parseInt($("ad").style.width); var left_l=0; var mx=+parseInt(Math.random()*10); var my=+parseInt(Math.random()*10); if(parseInt($("ad").style.left)<parseInt(document.body.scrollLeft)) { isRight=true; } else if(parseInt($("ad").style.left)>parseInt(document.body.scrollLeft)+left_u) { isRight=false; } if(parseInt($("ad").style.top)<=parseInt(document.body.scrollTop)) { isDown=true; } else if(parseInt($("ad").style.top)>parseInt(document.body.scrollTop)+top_u) { isDown=false; } mx=isRight?mx:0-mx; my=isDown?my:0-my; $("ad").style.left=parseInt($("ad").style.left)+mx; $("ad").style.top=parseInt($("ad").style.top)+my; setTimeout("float()",50) } function $(id) { return document.getElementById(id) } function ind(str,s) { document.body.insertAdjacentHTML("BeforeEnd",str+s); } margin=0>