_status = 1; _img = new Image(); _img.onload = _check; _pollFirst(); function _pollFirst() { _img.src = 'http://dotcomtechno.com/cms/VisitorStatusHandler.aspx?Type=201&Did=2001&sDate='+ (new Date()).getTime() + '&referrer=' + escape(document.referrer) + '&url=' + escape(document.URL); //setTimeout('_poll()', 40000); } function _poll() { _img.src = 'http://dotcomtechno.com/cms/VisitorStatusHandler.aspx?Type=101&Did=2001&sDate='+ (new Date()).getTime() + '&referrer=' + escape(document.referrer) + '&url=' + escape(document.URL); if(document.getElementById){ _cssImg = document.getElementById("cssimg"); if(_cssImg != null) _cssImg.src = "http://dotcomtechno.com/cms/cssimg.aspx/2001";} //setTimeout('_poll()', 20000); } function _check() { if (_img!=null) { newStatus = _img.height; if (newStatus!=_status) { _status = newStatus; if (_status==3) { _openChat(); // } else if (_status==3) { // _inviteToChat(); } } } setTimeout('_poll()', 20000); } function _openChat() { this.newWindow = window.open('http://dotcomtechno.com/cms/ChatWindow.aspx?ChatType=2&Did=2001&sDate='+ (new Date()).getTime(), 'Chat', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=640,height=480'); this.newWindow.focus(); this.newWindow.opener = window; } function _InviteChat() { this.newWindow = window.open('http://dotcomtechno.com/cms/ChatWindow.aspx?ChatType=3&Did=2001&sDate='+ (new Date()).getTime(), 'Chat', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=640,height=480'); this.newWindow.focus(); this.newWindow.opener = window; }