function removelive()
{
var obj 
document.all("fflive").removeNode(true);
mylive.style.display="none"
}

lastScrollY=0;
function heartBeat(){ 
var diffY;
var thetop;
if (document.documentElement && document.documentElement.clientHeight){
	diffY = document.documentElement.scrollTop;
    thetop = document.documentElement.clientHeight;
}
else if (document.body){
	diffY = document.body.scrollTop
    thetop = document.body.clientHeight;
}
else{
    {/*Netscape stuff*/}
}
//alert(thetop);
percent=.1*(diffY-lastScrollY+thetop-300); 
if(percent>0)percent=Math.ceil(percent); 
else percent=Math.floor(percent); 
document.getElementById("mylive").style.top=parseInt(document.getElementById("mylive").style.top)+percent+"px";
lastScrollY=lastScrollY+percent;
//alert(percent);
}
window.setInterval("heartBeat()",1);