var tips =100; 
var theTop = 150/*这是默认高度,越大越往下*/; 
var old = theTop;
function Loadqq()
{   
    document.write( "<div id=\"QQFloat\" style=\"Z-INDEX:20; VISIBILITY:visible; WIDTH:110px; POSITION:absolute; TOP:148px; HEIGHT:300px; left: 5px;\">" );
    document.write("<table width=\"100%\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\"><tr><td height=\"24\"><img src=\"images/QQ/01.gif\" width=\"110\" height=\"70\"></td>");
    document.write(" </tr><tr><td valign=\"top\" background=\"images/QQ/02.gif\">");
    document.write("<table width=\"100%\" height=\"100%\"  border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr valign=\"top\"><td colspan=\"2\">");
    document.write("<table width=\"100%\"  border=\"0\"><tr><td align=\"center\">");
    document.write("<a target=\"_blank\" href=\"http:\/\/wpa.qq.com\/msgrd?v=3&uin=267074331&site=qq&menu=yes\"><img border=\"0\" src=\"http:\/\/wpa.qq.com\/pa?p=2:267074331:47\" alt=\"点击这里给我发消息\" title=\"点击这里给我发消息\"><\/a>");
    
    
    
    
    document.write("</table></td></tr></table></td></tr><tr><td height=\"19\"><img src=\"images/QQ/03.gif\" width=\"110\" height=\"31\"></td></tr></table></div>");
	
	
    tips = document.getElementById('QQFloat');
    moveTips();

    
}


function moveTips() {
  var tt=50;
  if (window.innerHeight) {
    pos = window.pageYOffset
  }
  else if (document.documentElement && document.documentElement.scrollTop) {
    pos = document.documentElement.scrollTop
  }
  else if (document.body) {
    pos = document.body.scrollTop;
  }
  if ( tips != undefined ){
  pos=pos-tips.offsetTop+theTop;
  pos=tips.offsetTop+pos/10;
	
  if (pos < theTop) pos = theTop;
  if (pos != old) {
    tips.style.top = pos+"px";
    tt=10;
		//alert(tips.style.top);
  }}
	
  old = pos;
  setTimeout(moveTips,tt);
}

