/*
   This page holds the functions for how the dealers will call chat
   from their site.  There are 2 formats below to choose from.  The
   third format will be used to enable chat for all existing Outsell
   dealers who are on Talisma chat without them having to change their
   website code
*/

// start chat session using expanded layout
function StartChatBig(dealerstring) {
var strUrl = "";
var strQuerystring = "";
var startchatfile = "";
strUrl = escape(top.window.location.href);
startchatfile = "startchat/startchat.php";
strQuerystring = startchatfile + "?" + dealerstring + "&curURL=" + strUrl;
window.open(strQuerystring, 'custclient',
'location=0,width=500,height=320,scrollbars=0');
}

// start chat session using small layout
// sample dealerstring is dealerid=20981&useprechatform=0
function StartChatSmall(dealerstring) {
var strUrl = "";
var strQuerystring = "";
var startchatfile = "";
strUrl = escape(top.window.location.href);
startchatfile = "startchat/startchat.php";
strQuerystring = startchatfile + "?" + dealerstring + "&curURL=" + strUrl;
window.open(strQuerystring, 'custclient',
'location=0,width=600,height=160,scrollbars=0');
}

// default chat code for old chat migration from talisma, expanded layout, no prechat form
/*function Outsell_StartChat(dealerid, groupid) {
var strUrl = "";
var strQuerystring = "";
var startchatfile = "";
strUrl = escape(top.window.location.href);
startchatfile = "http://www.outsellchat.com/startchat/startchat.php";
strQuerystring = startchatfile + "?" + "dealerid=" + dealerid + "&groupid=" + groupid + "&useprechatform=0" + "&curURL=" + strUrl;
//alert (strQuerystring);
window.open(strQuerystring, 'custclient',
'location=0,width=500,height=320,scrollbars=0');
//return false;
}*/
function Outsell_StartChat(dealerid, groupid) {
var strUrl = "";
var strQuerystring = "";
var startchatfile = "";
strUrl = escape(top.window.location.href);
startchatfile = "http://www.outsellchat.com/IS_IPanel/Chat_Init.php";
strQuerystring = startchatfile + "?" + "dealerid=" + dealerid + "&groupid=" + groupid + "&useprechatform=0" + "&curURL=" + strUrl;
//alert (strQuerystring);
window.open(strQuerystring, 'custclient',
'location=0,width=500,height=320,scrollbars=0');
}
