
//

//<script>

// Default window ornaments for the live help dialog
var _liveHelpDialogFeature = "status=1,width=500,height=400,resizable=1";



function WriteLiveSupportButton()
{


	var ImageURL='http://ccapw.brlive.co.uk/CuteSoft_Client/CuteChat/images/web_chat_offline.gif';

	//ImageURL= "<img style=\"width:140px\" title=\"support chat\" src=\""+ImageURL+"\" border=0>";
	ImageURL= "<img title=\"support chat\" src=\""+ImageURL+"\" border=0>";

	// write the live support button to the page
	document.write('<a href=\"###\" id="openChatLink" onclick=\"OpenLiveSupport()\">' + ImageURL + '</a>');

}

WriteLiveSupportButton();

function OpenLiveSupport()
{
	var encode=escape
	if(typeof(encodeURIComponent)!="undefined")
		encode=encodeURIComponent;
		
	var url="http://ccapw.brlive.co.uk/CuteSoft_Client/CuteChat/"+"SupportRedirect.aspx?department=Cobham&Referrer="+encode(document.referrer)+"&Url="+encode(location.href)+"&_time="+(new Date().getTime());
	var win;
	try
	{
		win=window.open(url,'',_liveHelpDialogFeature);
	}
	catch(x)
	{
	}
	
	if(win==null)
	{
	    //alert("Pop-up Blocker Detected.");
	    //$("#openChatLink").attr("target","_blank");
	    $("#openChatLink").unbind('click');
	    $("#openChatLink").attr("href", url);
	    //$("#openChatLink").click();
	    //alert($("#openChatLink").attr("href"));
	}
}


