function removeplayer()
{
var obj 
document.all("ffplay").removeNode(true);
myPlayer.style.display="none"
}

lastScrollY2=0;
function heartBeat2(){ 
var diffY2;
var thetop2;
if (document.documentElement && document.documentElement.clientHeight){
	diffY2 = document.documentElement.scrollTop;
    thetop2 = document.documentElement.clientHeight;
}
else if (document.body){
	diffY2 = document.body.scrollTop
    thetop2 = document.body.clientHeight;
}
else{
    {/*Netscape stuff*/}
}
//alert(thetop);
percent2=.1*(diffY2-lastScrollY2+thetop2-300); 
if(percent2>0)percent2=Math.ceil(percent2); 
else percent2=Math.floor(percent2); 
document.getElementById("myPlayer").style.top=parseInt(document.getElementById("myPlayer").style.top)+percent2+"px";
lastScrollY2=lastScrollY2+percent2;
//alert(percent);
}
window.setInterval("heartBeat2()",1);