var tips;
if(!theTop)
{
var theTop = 333;
}

var old = theTop;
var rightpostion
if (((((document.body.offsetWidth-1024)/2)+1002)-81)<921)
{rightpostion=921;}
else
{rightpostion=document.body.offsetWidth-((document.body.offsetWidth-1002)/2)-81+"px";
}
  rights = document.getElementById('onlinechat');
  rights.style.left=rightpostion;
  moveright();

window.onresize=function(){
//window.location.reload();
//document.getElementById('onlinechat').style.left=rightpostion;
}

function moveright() {
  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-rights.offsetTop+theTop;
  pos=rights.offsetTop+pos/10;
  if (pos < theTop) pos = theTop;
  if (pos != old) {
    rights.style.top = pos+"px";
    tt=10;
  }
  old = pos;
  setTimeout(moveright,tt);
}
