// 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("lovexin14").style.top=parseInt(document.getElementById("lovexin14").style.top)+percent+"px";
lastScrollY=lastScrollY+percent; 

//alert(lastScrollY);
}

suspendcode14="<DIV id=\"lovexin14\" style='background:#FFF;; height:91px; width:166px;right:2px;POSITION:absolute;TOP:200px;padding-top:5px;overflow:hidden'><form name=query ACTION='http://tengguan.vicp.net/service/fwwebcheck.dll' METHOD='POST' target='_blank' onSubmit='return FormCheck();'><table width='100%' border='0' align='center'><tr><td style='font-weight:bold; width:100%'>Anti-fake Information£º</td></tr><tr><td width='66%'><input type='text' name='code1'  id='code1' style='width:70px;' onblur='checkcode();'  maxlength='10'/><input type='text' name='code2'  id='code2' style='width:70px;' onblur='checkcode();'  maxlength='10'/><br/><input type='hidden' style='width:106px;' size='20' id='CODESTR' name='CODESTR' maxlength='20' ></td></tr><tr><td><input type=submit value=Inquiry name=Submit style='width:57px;'>&nbsp;<input type=reset value=Cancel name=reset style='width:48px;'>&nbsp;<input type='button' name='help' value='Note'onclick='gohelp();' style='width:40px;'/></td></tr></table></form></div>"

document.write(suspendcode14); 
window.setInterval("heartBeat()",1);


