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*/}

percent=.1*(diffY-lastScrollY); 
//alert(percent);
if(percent>0)percent=Math.ceil(percent); 
else percent=Math.floor(percent); 
//alert(parseInt(document.getElementById("full").style.top)+percent+document.getElementById("full").offsetHeight);
if((parseInt(document.getElementById("full").style.top)+percent+document.getElementById("full").offsetHeight)<document.getElementById("contents").offsetHeight+20 && (parseInt(document.getElementById("full").style.top)+percent)>0 ){
    document.getElementById("full").style.top=parseInt(document.getElementById("full").style.top)+percent+"px";
}
lastScrollY=lastScrollY+percent; 
}
suspendcode="<div id=\"full\" style='right:-20px;POSITION:relative;TOP:0px;z-index:100;width:114px;height:326px;'><table width='114' height='326' border='0' cellpadding='0' cellspacing='0'><tr><td colspan='5'><img src='../../images/tels_03_01.gif' width='114' height='60' /></td></tr><tr><td colspan='5' style='height: 13px'><img src='../../images/tels_03_02.gif' width='114' height='13' /></td></tr><tr><td rowspan='16'><img src='../../images/tels_03_03.gif' width='31' height='253' /></td><td colspan='3'><a href='../../index.aspx' target='_self'><img src='../../images/tels_03_04.gif' width='51' height='15' /></a></td><td rowspan='16'><img src='../../images/tels_03_05.gif' width='32' height='253' /></td></tr><tr><td colspan='3'><img src='../../images/tels_03_06.gif' width='51' height='17' /></td></tr><tr><td colspan='3'><a href='../../english/index.aspx' target='_self'><img src='../../images/tels_03_07.gif' width='51' height='12' /></a></td></tr><tr><td colspan='3'><img src='../../images/tels_03_08.gif' width='51' height='17' /></td></tr><tr><td colspan='3'><a href='../../Help/Online.html' target='_self'><img src='../../images/tels_03_09.gif' width='51' height='14' /></a></td></tr><tr><td colspan='3'><img src='../../images/tels_03_10.gif' width='51' height='16' /></td></tr><tr><td colspan='3'><a href='../../Help/Contacts.html' target='_self'><img src='../../images/tels_03_11.gif' width='51' height='14' /></a></td></tr><tr><td colspan='3'><img src='../../images/tels_03_12.gif' width='51' height='16' /></td></tr><tr><td colspan='3'><a href='../../Cooperation/Customer/Index.aspx' target='_self'><img src='../../images/tels_03_13.gif' width='51' height='14' /></a></td></tr><tr><td colspan='3'><img src='../../images/tels_03_14.gif' width='51' height='16' /></td></tr><tr><td colspan='3' style='height: 14px'><a href='../../Product/' target='_self'><img src='../../images/tels_03_15.gif' width='51' height='14' /></a></td></tr><tr><td colspan='3'><img src='../../images/tels_03_16.gif' width='51' height='16' /></td></tr><tr><td colspan='3'><a href='../../Links/Link.aspx' target='_self'><img src='../../images/tels_03_17.gif' width='51' height='14' /></a></td></tr><tr><td colspan='3'><img src='../../images/tels_03_18.gif' width='51' height='23' /></td></tr><tr><td rowspan='2'><img src='../../images/tels_03_19.gif' width='15' height='35' /></td><td><a href='#top' target='_self'><img src='../../images/tels_03_20.gif' width='20' height='20' /></a></td><td rowspan='2'><img src='../../images/tels_03_21.gif' width='16' height='35' /></td></tr><tr><td><img src='../../images/tels_03_22.gif' width='20' height='15' /></td></tr></table></div>"
document.getElementById("rightMenu_in").innerHTML +=suspendcode;
window.setInterval("heartBeat()",1);