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("ALayer1").style.top=parseInt(document.getElementById("ALayer1").style.top)+percent+"px";

lastScrollY=lastScrollY+percent;
//alert(lastScrollY);
}
suspendcode12="<DIV id=\"ALayer1\" style='left:5px;PosITION:absolute;TOP:200px;FILTER: alpha(opacity=100);'><div align=left><img src='images/close.gif' border=0 onclick='closeBanner();' /></div><a href='http://www.xhqh.com/about/Affiche_Detail.aspx?pds=149' target='_blank'><img src='../images/ing.jpg'  alt='' border='0' /></a> <br /><a href='http://www.fazj.org/tzzjy.shtml' target='_blank'><img src='../images/Scroll-left2.jpg' style='margin-top:6px;' border='0'></a> <br /></div>"

document.write(suspendcode12);
window.setInterval("heartBeat()",1);
function closeBanner()
{
document.getElementById("ALayer1").style.display= 'none';
}
//setTimeout("closeBanner()",6000);