// 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("LeftAd").style.top=parseInt(document.getElementById("LeftAd").style.top)+percent+"px";
lastScrollY=lastScrollY+percent;
}

suspendcode12=" <div style='right:20px;position:absolute;top:150px; width:141px; height:279px; z-index:999' id=LeftAd > <table width= '137 ' border= '0 ' cellspacing= '0 ' cellpadding= '0 '>   <tr>     <td><img src= 'images/qq1.gif ' width= '137 ' height= '33 ' border= '0 ' usemap= '#Map12 '></td>   </tr>   <tr>     <td>     <div style= ' width:137px; height:104px; background-image:url(images/qq2.gif); text-align:center '>     	<div style=' padding-left:5px; padding-top:22px; width:100px'>             <div style='width:25px;float:left; text-align:center'><a href='http://wpa.qq.com/msgrd?V=1&Uin=2579602957&Menu=yes' target='_blank'><img SRC='http://wpa.qq.com/pa?p=1:2579602957:4' alt='点击这里给我发消息' border='0'></a></div>             <div style=' float:left'> <a href='http://wpa.qq.com/msgrd?V=1&Uin=2579602957&Menu=yes' target='_blank'>&nbsp;在线客服</a></div>         </div>     </div>     </td>   </tr> </table>  <map name= 'Map12 '><area shape= 'rect ' coords= '109,8,135,32 ' onclick='ClosedivLeft()'></map></div> "
document.write(suspendcode12);
window.setInterval("heartBeat()",1);
function ClosedivLeft()
{
LeftAd.style.visibility="hidden";
}
