// 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=.1*(diffY-lastScrollY); 
if(percent>0)percent=Math.ceil(percent); 
else percent=Math.floor(percent); 
document.getElementById("lovexin12").style.top=parseInt(document.getElementById("lovexin12").style.top)+percent+"px";

lastScrollY=lastScrollY+percent; 
//alert(lastScrollY);
}
suspendcode12="<DIV id=\"lovexin12\" style='right:2%;POSITION:absolute;TOP:140px; width=115; height=302'>&nbsp;&nbsp;&nbsp;<a href=JavaScript:; onclick=\"lovexin12.style.visibility='hidden'\"><img border=0 src=../inc/close.gif></a><br><a href='../guestbook.php' target='_blank'><img border=0 src=../inc/kefu1.gif></a><br><a href='../cplist.php?cat_id=132' target='_blank' onclick=\"window.open('page.php', 'newwindow', 'height= 540 width=800 toolbar=no, menubar=no, scrollbars=no,top=100px,left=100px, resizable=no,location=no, status=no');\"><img border=0 src=../inc/kefu2.gif></a></div>" 
 

document.write(suspendcode12);  
window.setInterval("heartBeat()",1); 
