﻿var lastScrollY=0;
function RightMark(){ 
	diffY=document.body.scrollTop; 
	percent=0.1*(diffY-lastScrollY); 
	if(percent>0)percent=Math.ceil(percent); 
	else percent=Math.floor(percent); 
	document.getElementById("sorollDiv1").style.top=parseInt(document.getElementById("sorollDiv1").style.top)+percent+"px";
	document.getElementById("sorollDiv2").style.top=parseInt(document.getElementById("sorollDiv2").style.top)+percent+"px";
	lastScrollY=lastScrollY+percent; 
}
function hide(){
	document.getElementById("sorollDiv1").style.display='none';
	document.getElementById("sorollDiv2").style.display='';
}
function show(){
	document.getElementById("sorollDiv1").style.display='';
	document.getElementById("sorollDiv2").style.display='none';
}
document.writeln('<div id="sorollDiv1" style="width:34px; height:50px; right:0px;position:absolute;top:5px;z-index:1000;"><table width="110" border="0" cellspacing="0" cellpadding="0">');
document.writeln('<tr><td background="http://www.0200.cn/top.gif" style="background-repeat:no-repeat;" width="110" height="70">&nbsp;</td></tr>');
document.writeln('<tr><td align="right" background="http://www.0200.cn/middle.gif" style="background-repeat:repeat-y; padding-right:20px;"><A href="http://wpa.qq.com/msgrd?V=1&amp;Uin=946415&amp;Site=一招科技&amp;Menu=yes" target=blank><IMG alt="一招科技946415欢迎您！" src="http://wpa.qq.com/pa?p=1:946415:4"border=0></A>&nbsp;客服</td></tr>');
document.writeln('<tr><td align="right" background="http://www.0200.cn/middle.gif" style="background-repeat:repeat-y; padding-right:20px;"><A href="http://wpa.qq.com/msgrd?V=1&amp;Uin=245752&amp;Site=一招科技&amp;Menu=yes" target=blank><IMG alt="一招科技245752欢迎您！" src="http://wpa.qq.com/pa?p=1:245752:4"border=0></A>&nbsp;客服</td></tr>');
document.writeln('<tr><td background="http://www.0200.cn/down.gif" style="background-repeat:repeat-y;" width="110" height="31" onclick="hide();" style="cursor:hand">&nbsp;</td></tr>');
document.writeln('</table></div>');
document.writeln('<div id="sorollDiv2" style="width:34px; height:50px; right:0px; position:absolute;top:5px;z-index:1000;display:none">');
document.writeln('<table width="34" border="0" cellspacing="0" cellpadding="0">');
document.writeln('<tr><td align="left"><div align="right"><img src="http://www.0200.cn/open.gif" width="13" height="92" onclick="show();" style="cursor:hand"></div></td></tr>');
document.writeln('</table></div>');
window.setInterval("RightMark()",10);
