var ScrollTop,qq1,qq2,qq1_name,qq2_name


ScrollTop=160	//与页面顶部的距离
ScrollLeft=0	//与页面左边的距离

function LoadQQService()
{
	ScrollObj=document.getElementById('QQService');
	ClientHeight=document.body.clientHeight;
	
	if(window.screen.width<=800)
		ScrollObj.style.display="none";
	
	ScrollTop=120;
	
	if(ScrollObj.clientHeight+ScrollTop>=ClientHeight)
	{
		if(ClientHeight<ScrollObj.clientHeight+20)
			ScrollObj.style.display='none';
		else
			ScrollObj.style.display='';
		
		if(ClientHeight<=ScrollObj.clientHeight+50)
			ScrollTop=10;
		else if(ClientHeight<=ScrollObj.clientHeight+100)
			ScrollTop=40;
		else
			ScrollTop=70;
	}
	
	QQService.style.top=document.body.scrollTop+ScrollTop;
	setTimeout("LoadQQService();",50)
}

document.write("<div id='QQService' style='position:absolute;width:110px;top:0px;left:"+ScrollLeft+"px;visibility:visible;z-index:1'>");
document.write("<table width='118' height='138' border='0' cellpadding='0' cellspacing='0'>  <tr> ");
   document.write(" <td width='118' height='35'><img src='up_new_001.gif' width='118' height='35'></td>");
  document.write("</tr>  <tr> ");
  document.write("  <td height='28' background='mid_new_001.gif' class='px'>&nbsp;&nbsp;<img src='010.jpg' ><a href='msnim:chat?contact=sbcx@live.cn'tareget='_blank'>Servicer (一)</a></td>");
 document.write(" </tr>  <tr> ");
  document.write("  <td height='37' background='mid_new_001.gif' class='px'>&nbsp;&nbsp;<img src='010.jpg' ><a href='msnim:chat?contact=chunyongwei@hotmail.comtareget='_blank'>Servicer (二)</a></td>");
  document.write("</tr>  <tr> ");
   document.write(" <td height='38' valign='top'><img src='bot_new_001.gif' width='118' height='38'></td>");
  document.write("</tr></table>");
document.write("</div>");

LoadQQService();
