﻿// 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);
}
function BFloatCloseonlinel()
{
 var popup = document.getElementById("lovexin12").style.visibility='hidden'; 
}

suspendcode12="<DIV id=\"lovexin12\" style='left:25px;POSITION:absolute;TOP:80px; width:120px; height:370px;'><a href=\"http://www.tlbaobao.com/ztzx/cjdhz/\"><img src='http://www.tlbaobao.com/img/chenr-1.jpg' width='120' height=\'360' border='0'></a></div>"

document.write(suspendcode12); 
window.setInterval("heartBeat()",1);
