﻿/* ChatScripting.js */
var updateCount = 0;

function checkRefreshTime(rooturl, id, configid, sec) {
    var detector = document.getElementById('detect' + id);
    if (detector.src && detector.src != '') {
        var thisheight = detector.offsetHeight;
        if (thisheight == 2) {
            document.getElementById('a' + id + 'on').style.display = 'none';
            document.getElementById('a' + id + 'off').style.display = '';
        } else if (thisheight == 1) {
            document.getElementById('a' + id + 'on').style.display = '';
            document.getElementById('a' + id + 'off').style.display = 'none';
        }
    }
    updateCount++;
    if ((updateCount % sec) == 0) {
        refreshImage(rooturl, id, configid);
    }
    setTimeout("checkRefreshTime('" + rooturl + "','" + id + "','" + configid + "'," + sec + ");", 1000);
}
function refreshImage(rooturl, id, configid) {
    date1 = new Date();
    updateurl = rooturl + "ChatScript.ashx?config=" + configid + "&refresh=1&time=" + date1.getTime();
    var detector = document.getElementById('detect' + id);
    detector.src = updateurl;
}

document.write("<img style='position:absolute;top:0px;left:0px;z-index:-9999;visibility:hidden;' id='detectControlID' src='http://iptv-support.net/ChatScript.ashx?config=1&refresh=1&wsid=0' />");
document.write("<a style='display:none' id='aControlIDon' href='http://iptv-support.net/Chat/frmClientPreChat.aspx?config=1' target='_blank' title='Live Chat' onClick=\"newWindow = window.open('http://iptv-support.net/Chat/frmClientPreChat.aspx?config=1', 'LiveChat1', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=500,height=480'); if (newWindow) { newWindow.focus(); newWindow.opener=window; } return false;\">	<img id='imgControlIDon' alt='Live Chat' title='Live Chat' src='/images/live_chat.gif' border='0'>Чат по продажам</a>");
document.write("<a id='aControlIDoff' href='http://www.bestrussiantv.com/support/contact-sales.aspx' title='No agents are currently available. Click to submit a Ticket.' >	<img id='imgControlIDoff' alt='No agents are currently available. Click to submit a Ticket.' title='No agents are currently available. Click to submit a Ticket.' src='/images/live_chat.gif'  style='border: 0px;margin-right:5px;' />Чат по продажам</a> | ");

checkRefreshTime('http://iptv-support.net/', 'ControlID', '1', 30);
