
//

//<script>

// Default window ornaments for the live help dialog
var _liveHelpDialogFeature = "width=600,height=580,resizable=yes,status=yes";



function WriteLiveSupportButton()
{


	var ImageURL='http://chat.mmpjourney.com/CuteSoft_Client/CuteChat/images/141x44-offline.gif';
    
	ImageURL= "<img title=\"support chat\" src=\""+ImageURL+"\" border=0 style='position: relative; left: -40px;'>";

	// write the live support button to the page
	document.write('<a href=\"#\" onclick=\"OpenLiveSupport(); return false;\">'+ImageURL+'</a>');

}

WriteLiveSupportButton();

function OpenLiveSupport()
{
	var url="http://chat.mmpjourney.com/CuteSoft_Client/CuteChat/"+"SupportRedirect.aspx?Referrer="+escape(document.referrer)+"&Url="+escape(location.href)+"&_time="+escape($("hiddenval").value);
	var win;
	try
	{
		win=window.open(url,'',"width=640,height=640,resizable=yes,status=yes");
	}
	catch(x)
	{
	}
	
	if(win==null)
	{
		alert("Pop-up Blocker Detected.");
	}
}


