document.writeln(''); document.writeln('
      '); var tips; var theTop = 200; var old = theTop; var qqleft=5; var qqright=5; function initFloatTips() { document.getElementById("divQQbox").style.display = "block"; tips = document.getElementById("divQQbox"); tips.style.right=qqright+'px'; moveTips(); }; function closeqq(){ document.getElementById("divQQbox").style.width = "34px"; document.getElementById("qqshow").style.display='none'; document.getElementById("divcloseqq").style.marginTop = "30px"; document.getElementById("divcloseqq").style.display = "block"; }; function showqq(){ document.getElementById("divQQbox").style.width = "115px"; document.getElementById("qqshow").style.display='block'; document.getElementById("divcloseqq").style.display = "none"; }; 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; } 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; } old = pos; setTimeout(moveTips, tt); } initFloatTips();