﻿//var CallmeSiteURL = "http://localhost/chat";
var CallmeChatURL = "http://chat.callme.co.il";
//this.location.href.charAt(4)

var oCallMeNum = document.getElementById("CallMeNumTB");
//debugger
if(oCallMeNum==null)
{
    document.write("<input type='hidden' id='CallMeNumTB' />"); 
    oCallMeNum = document.getElementById("CallMeNumTB");
    oCallMeNum.value = "0";
    var CallMeParamsArray=new Array();
}
else
    oCallMeNum.value = parseInt(oCallMeNum.value,10)+1;

CallMeNumVal = parseInt(oCallMeNum.value,10)