
function hidead()
{
	document.getElementById("ad").style.display="none";
}

document.write('<div id="ad" style="position:absolute">');

document.write("<a href='http://www.bkjpress.com/Html/Article/20100305/2952.html' target=_blank>");
document.write("<img src='/upload/advertise/20091110114145a.jpg' alt='招聘编辑' border=0 ></a>");
document.write("<DIV onclick='hidead();' style='FONT-SIZE: 9pt; CURSOR: hand' align=right><img src=/mouldfile/images/close.gif></DIV></div>");
document.close() ;

var x = 50,y = 60
var xin = true, yin = true
var step = 1
var delay = 1
var obj=document.getElementById("ad")
function floatAD() {
var L=T=0
var R= document.body.clientWidth-obj.offsetWidth
var B = document.body.clientHeight-obj.offsetHeight
obj.style.left = x + document.body.scrollLeft
obj.style.top = y + document.body.scrollTop
x = x + step*(xin?1:-1)
if (x < L) { xin = true; x = L}
if (x > R){ xin = false; x = R}
y = y + step*(yin?1:-1)
if (y < T) { yin = true; y = T }
if (y > B) { yin = false; y = B }
}
var itl= setInterval("floatAD()", delay)
obj.onmouseover=function(){clearInterval(itl)}
obj.onmouseout=function(){itl=setInterval("floatAD()", delay)}
