
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
    {/*方便扩展*/}
percent=.1*(diffY-lastScrollY); 
if(percent>0)percent=Math.ceil(percent); 
else percent=Math.floor(percent); 
document.getElementById("l").style.top=parseInt(document.getElementById("l").style.top)+percent+"px";
//document.getElementById("r").style.top=parseInt(document.getElementById("r").style.top)+percent+"px";
lastScrollY=lastScrollY+percent; 
}

suspendcode12="<div id='l' style='left:2px;POSITION:absolute;TOP:150px;'><div style='margin-left:250px;float:right;color:white;position:absolute;cursor:pointer;' onclick='javascript:document.getElementById(\"l\").style.display=\"none\";'>[X]</div><table width='270' height='93' border='0' cellpadding='0' cellspacing='0'><tr><td width='5' background='images/2.jpg'></td><td width='49' background='images/3.jpg'></td><td width='22' align='center'  background='images/4.jpg'><span class='STYLE4'>&nbsp;</span></td><td width='184' align='left'  background='images/4.jpg' style='line-height:25px; font-size:12px;'>联系人：曹先生<br />联系电话：0571-86733815<br />电话：13306520568</td><td width='7' background='images/5.jpg'></td></tr></table></div>"


//suspendcode14="<div id='r' style='right:2px;POSITION:absolute;TOP:150px;'><div style='margin-left:90px;float:right;color:white;position:absolute;cursor:pointer;' onclick='javascript:document.getElementById(\"r\").style.display=\"none\";'>[X]</div><table border='0' cellspacing='0' cellpadding='0'><tr><td><a href='products.asp?classid=37' target='_blank'><img src='images/both.jpg' width='110' height='251' border='0'></a></td></tr></table></div>"


document.write(suspendcode12); 
//document.write(suspendcode14); 
window.setInterval("heartBeat()",1);
