function removelive()
{
var obj 
document.all("fflive").removeNode(true);
mylive.style.display="none"
}


var tipsb; 
var oldb = theTopb;
function initFloatTipsb() {
  tipsb = document.getElementById('mylive');
  moveTipsb();
};
function moveTipsb() {
  var ttb=50;
  if (window.innerHeight) {
    posb = window.pageYOffset
  }
  else if (document.documentElement && document.documentElement.scrollTop) {
    posb = document.documentElement.scrollTop
  }
  else if (document.body) {
    posb = document.body.scrollTop;
  }
  posb=posb-tipsb.offsetTop+theTopb;
  posb=tipsb.offsetTop+posb/10;
  if (posb < theTopb) posb = theTopb;
  if (posb != oldb) {
    tipsb.style.top = posb+"px";
    ttb=10;
  }
  oldb = posb;
  setTimeout(moveTipsb,ttb);
}
initFloatTipsb();
