function nodisplay()
{
    document.getElementById("jesse12").style.display="none";
 
}
lastScrollY=0;
function heartBeat(){ 
var diffY;
if (document.documentElement && document.documentElement.scrollTop)
diffY = document.documentElement.scrollTop;
else if (document.body)
diffY = document.body.scrollTop
else
{/*Netscape stuff*/}
//alert(diffY);
percent=.1*(diffY-lastScrollY); 
if(percent>0)percent=Math.ceil(percent); 
else percent=Math.floor(percent); 
document.getElementById("jesse12").style.top=parseInt(document.getElementById
("jesse12").style.top)+percent+"px";
lastScrollY=lastScrollY+percent; 
//alert(lastScrollY);
}
suspendcode12="<DIV id=\"jesse12\" style='left:2px;POSITION:absolute;TOP:200px;'><a href='http://www.oulijing.com/ad.htm' target='_blank'><img src='http://www.oulijing.com/images/100x100.gif' width='100' height='100' border='0'></a><div onclick='nodisplay();'><img src='http://health.huilive.com/front_res/img/close.gif' width='100' height='14' border='0'></div></div>"
document.write(suspendcode12); 
window.setInterval("heartBeat()",1);
