﻿function OpenLiveChat() {

    var URL = " http://newchat.livehelper.com/servlet/lhChat?ACTION=SENDNAMEENTRYSCREEN&WINDOWSIZE=1&COMPANYID=1100961&GROUPNAME=Administrators&OPERATOR=&RND=" + GetRandomNumber() + "&SSL=DISABLED&nocache=" + GetRandomNumber();
    day = new Date();
    id = day.getTime();
    eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=460,height=377');");
}

function GetRandomNumber() {
    return Math.floor(Math.random() * 9999999999).toString();
}