	var move
	var initint
	initint=0
	


try
{
var objCheckqtt;
objCheckqtt = new ActiveXObject("EtelChek.Application.1");
function MakeCallqtt(userID)
{
if((objCheckqtt != null )&&(objCheckqtt.IsRunning))
{
objCheckqtt.MakeCall('c0086','c268',userID);
}
else
{
window.open("http://www.c22.cn/webcom/main.asp?remotecountryid=c0086&remoteareaid=c268&remoteuserid="+userID,'WDETEL','width=523,height=298,resizeable=0');
}
}
}
catch(e)
{
}
drag = 0
move = 0
    window.document.onmousemove = mouseMove
    window.document.onmousedown = mouseDown
    window.document.onmouseup = mouseUp
    window.document.ondragstart = mouseStop
function mouseDown() {
    if (drag) {
        clickleft = window.event.x - parseInt(dragObj.style.left)
        clicktop = window.event.y - parseInt(dragObj.style.top)
        dragObj.style.zIndex += 1
        move = 1
    }
}
function mouseStop() {
    window.event.returnValue = false
}
function mouseMove() {
    if (move) {
        dragObj.style.left = window.event.x - clickleft
        dragObj.style.top = window.event.y - clicktop
    }
}
function mouseUp() {
    move = 0
}