
//

//<script>

// Default window ornaments for the live help dialog
var _liveHelpDialogFeature = "status=1,width=550,height=450,resizable=1";













var ImageURL='http://nlc.netcarelivehelp.com:8080/customerfiles/images/chatbutton-offline.gif';

ImageURL= "<img  title=\"Live Help\" src=\""+ImageURL+"\"  border=0>";

// write the live help button to the page
document.write('<a href=\"###\" onclick=\"OpenLiveSupport()\">'+ImageURL+'</a>');

















function OpenLiveSupport()
{
	var url="http://nlc.netcarelivehelp.com:8080/LiveSupport_Client/LiveSupport/SupportRedirect.aspx?Referrer=&_time="+(new Date().getTime());
	var win;
	try
	{
		//win=window.open(url,'',_liveHelpDialogFeature);
		win=window.open(url,'',"status=1,width=550,height=450,resizable=1");
	}
	catch(x)
	{
	}
	
	if(win==null)
	{
		alert("Pop-up Blocker Detected.");
	}
}


