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*/}

percent=.1*(diffY-lastScrollY); 
if(percent>0)percent=Math.ceil(percent); 
else percent=Math.floor(percent); 
document.getElementById("full").style.top=parseInt(document.getElementById("full").style.top)+percent+"px";

lastScrollY=lastScrollY+percent; 
}
suspendcode="<div id=\"full\" style='right:11px; top:180px; position:absolute;'><table width='20' border='0' cellpadding='0' cellspacing='0'><tr><td align='center'><a href='#top'><img border='0' src='images/icon_top.gif' alt='TOP' /></a></td></tr><tr><td align='center'><a href='mailto:ceqrxb@163.com' target='blank'><img border='0' src='images/icon_email.gif' alt='E-MAIL' /></a></td></tr><tr><td align='center'><a href='http://sighttp.qq.com/cgi-bin/check?sigkey=48a00a138789325c80060a930bcbe03fa57134482dd832c946ae968bc201b157'; target=_blank; onclick=var tempSrc='http://sighttp.qq.com/wpa.js?rantime='+Math.random()+'&sigkey=48a00a138789325c80060a930bcbe03fa57134482dd832c946ae968bc201b157;var oldscript=document.getElementById('testJs');var newscript=document.createElement('script');newscript.setAttribute('type','text/javascript'); newscript.setAttribute('id', 'testJs');newscript.setAttribute('src',tempSrc);if(oldscript == null){document.body.appendChild(newscript);}else{oldscript.parentNode.replaceChild(newscript, oldscript);}return false;'><img src='images/icon_oicq.gif' border='0' alt='OICQ' /></a></td></tr><tr><td align='center'><a href='http://im.baidu.com/' target='blank' class='zhaoshangLink'><img border='0' src='images/icon_msn.gif' alt='HI' /></a></td></tr><tr><td align='center'><a href='#bottom'><img border='0' src='images/icon_bottom.gif' alt='BOTTOM' /></a></td></tr></table></div>"

document.write(suspendcode);
window.setInterval("heartBeat()",1);