﻿var delay = 200
var ZQWinHeight = 150;
var obj=document.getElementById("QQonline");
var ZQWLeft = 115;
function moveOnline() {
	obj.style.left = document.body.offsetWidth-ZQWLeft;
	obj.style.top = document.documentElement.scrollTop+ZQWinHeight;
}
var itl= setInterval("moveOnline()", delay)
obj.onmouseover=function(){clearInterval(itl)}
obj.onmouseout=function(){itl=setInterval("moveOnline()", delay)}

function OnlineClose()
{
	obj.style.display = "none";
}