//Tomcat Server base address without trailing slash //HumanTouch-ECC = 172.20.10.12 Eric had "http://webchat.humantouch.com:8080"
var baseAddr = "http://webchat.humantouch.com:80";

//Servlet address
var serverAddr = baseAddr + "/ECCChat/ECCChat";

//Agent page
var agentPage = baseAddr + "/ECCChat/ECCAgentStartPage";

//Simultaneous browsing start page, this can be not at baseAddr, currently unused
var displayPage = baseAddr + "/ECCChat/sales.html";

//Seconds between sending typing messages
var sendTypingMessageInterval = 5;

//Milliseconds to wait to send a stopped typing message after no typing activity
var sendStoppedTypingInterval = 3 * 1000;

//Milliseconds to switching typing status to stopped after not receiving typing messages
var receiveStoppedTypingInterval = 10 * 1000;

//Disconnect date format (look in date.js for possible formats)
var disconnectDateFormatString = "yyyy-MM-dd HH:mm:ss";

//Timestamp format (look in date.js for possible formats)
var timestampDateFormatString = "yyyy-MM-dd HH:mm";

//Enable timestamps?
var timestamps = true;

//Minutes between new timestamps
var timestampInterval = 1;

//Enable title blinking?
var titleBlinking = true;

//Milliseconds per blink of the title, for message alerts
var titleBlinkInterval = 1 * 1000;

