﻿var tipsqq; var theTop =150;

var x0=0,y0=0,x1=0,y1=0;var old=theTop;
function initOnlineqqTips()
 {
  tipsqq = document.getElementById('QQOnline');
  
  moveTipsqq();
  
}
function closeqq()
  {
      document.getElementById('QQOnline').style.display="none";
  }
function moveTipsqq() {
  var tt=30;
  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;
  }

  pos=pos-tipsqq.offsetTop+theTop;
  pos=tipsqq.offsetTop+pos/10;
 
  if (pos < theTop) pos = theTop;
  if (pos != old) {
    
    tipsqq.style.top = pos+"px";
    tt=10;
  
  }
 
  old = pos;
  setTimeout(moveTipsqq,tt);
}

initOnlineqqTips();
