// 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("loadtxt").style.top=parseInt(document.getElementById("loadtxt").style.top)+percent+"px";
lastScrollY=lastScrollY+percent;
//alert(lastScrollY);
}
suspendcode12='<DIV id=loadtxt style="right:0px;POSITION:absolute;TOP:220px;"><div class=float><h4><a href="#" onclick="window.open(\'Email.aspx\',\'abc\',\'width=390,height=330\')" ><img src="img/float_1.JPG"></a></h4><h5><a href="#" onclick="window.open(\'Email1.aspx\',\'abc\',\'width=390,height=330\')"><img src="img/float_2.JPG"></a></h5><h6><a href="#"><em>5</em>TOP</a></h6></div></div>'
document.write(suspendcode12);
window.setInterval("heartBeat()",1);
function ClosedivLeft()
{
loadtxt.style.visibility="hidden";
}





