
//

//<script>

// Default window ornaments for the live help dialog
var _liveHelpDialogFeature = "location=0,status=0,scrollbars=0,width=577,height=437,resizable=0,noresize=noresize";



function WriteLiveSupportButton()
{


	var ImageURL='http://religaremf.com/livesupport/CuteSoft_Client/CuteChat/images/chat-green.jpg';

	ImageURL= "<img title=\"support chat\" src=\""+ImageURL+"\" border=0>";

	// write the live support button to the page
	document.write('<a href=\"###\" onclick=\"OpenLiveSupport()\">'+ImageURL+'</a>');

}

WriteLiveSupportButton();

function OpenLiveSupport()
{

	var url="http://religaremf.com/livesupport/CuteSoft_Client/CuteChat/"+"SupportRedirect.aspx?Referrer="+escape(document.referrer)+"&Url="+escape(location.href)+"&_time="+(new Date().getTime());

	var win;
	try
	{
		win=window.open(url,'',_liveHelpDialogFeature);
		
	}
	catch(x)
	{
	}
	
	if(win==null)
	{
		alert("Pop-up Blocker Detected.");
	}
}


