// JavaScript Document
if(screen.availWidth>800){
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("ad_pic1").style.top=parseInt(document.getElementById
("ad_pic1").style.top)+percent+"px";
document.getElementById("ad_pic2").style.top=parseInt(document.getElementById
("ad_pic2").style.top)+percent+"px";
lastScrollY=lastScrollY+percent; 
//alert(lastScrollY);
}
suspendcode12="<DIV id=\"ad_pic1\" style='right:15px;POSITION:absolute;TOP:85px;z-index:1000;' align='right'><a href='category.aspx?column=xxyd&category=xxjl'  target='_blank'><img src='./fdgg/gg001.jpg' border=0></img></a><br/><img src='./images/close.gif' WIDTH=30 HEIGHT=20 border=0 onClick='javascript:window.hide()'></img></div>"
suspendcode14="<DIV id=\"ad_pic2\"  style='left:15px;POSITION:absolute;TOP:85px;z-index:1000;visibility:hidden'  align='left'><a href='#'  target='_blank'><img src='./images/more.gif' border=0></img></a><br/><img src='./images/close.gif' WIDTH=30 HEIGHT=20 border=0 onClick='javascript:window.hide()'></img></div>"
function hide()  
{   
document.getElementById("ad_pic1").style.visibility="hidden"; 
document.getElementById("ad_pic2").style.visibility="hidden";
}
document.write(suspendcode12); 
document.write(suspendcode14); 
window.setInterval("heartBeat()",1);
}

