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='left:11px; top:200px; position:absolute;width:80px;' align='center'><table border='0' cellpadding='0' cellspacing='0'><tr><td align='center'><a href='/viewtopic.php?f=15&t=621' target='_parent' style='text-decoration: none;color: #0080FF;'>由川震<br>到八八<br>災後心靈<br>需要重建</a></td></tr></table><br><table border='0' cellpadding='0' cellspacing='0'><tr><td align='center'><a href='/viewtopic.php?p=7382#p7382' target='_parent' style='text-decoration: none;color: #FF4000;'>人生畢業禮<br>開始接受訂購</a></td></tr></table></div>"


document.write(suspendcode);

window.setInterval("heartBeat()",1);