// 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='right:40px;POSITION:absolute;TOP:10px;'><a href='http://www.weathersurvey.cn/2010/index.asp' target='_blank'><img border=0 src=http://www.weathersurvey.cn/wjdc/2010.jpg><br><a href=JavaScript:; onclick=\"diaocha.style.display = 'none'\"><img border=0 src=http://61.185.209.75/wjdc/close.gif></a></div>"


document.write(suspendcode14); 
window.setInterval("heartBeat()",1);
