// JavaScript Document
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=.05*(diffY-lastScrollY); 
if(percent>0)percent=Math.ceil(percent); 
else percent=Math.floor(percent); 

document.getElementById("diaocha").style.top=parseInt(document.getElementById("diaocha").style.top)+percent+"px";

lastScrollY=lastScrollY+percent; 
//alert(lastScrollY);
}


suspendcode14="<DIV id=\"diaocha\"  style='left:40px;POSITION:absolute;TOP:120px;'><a href='http://www.puke365.com/bwpp.htm' target='_blank'><img border=0 src=images/080425-feixiang-120x240.jpg><br><a href=http://www.puke365.com/bwpp.htm onclick=\"diaocha.style.display = 'none'\"><img border=0 src=http://61.185.209.72/sms/diaocha/close.gif></a></div>"


document.write(suspendcode14); 
window.setInterval("heartBeat()",1);

