
//

//<script>

// Default window ornaments for the live help dialog
var _liveHelpDialogFeature = "status=0,width=500,height=400,resizable=0";



function WriteLiveSupportButton() {
	    var ImageURL='http://www.impowersoft.com/LiveSupport/CuteSoft_Client/CuteChat/images/141x44-online.gif';

	ImageURL= "<img title=\"support chat\" src=\""+ImageURL+"\" border=0>";

	// write the live support button to the page
	//document.write('<div style=\"margin-left:800px;background:red;position:absoulte;height:41px;width:144px;z-index:100\"><a href=\"###\" onclick=\"OpenLiveSupport()\">' + ImageURL + '</a></div>');
	document.write('<a href=\"###\" onclick=\"OpenLiveSupport()\">' + ImageURL + '</a>');
//	window.setTimeout('WriteLiveSupportButton()', 1000000);
}

//WriteLiveSupportButton();

function OpenLiveSupport() {
	var encode=escape
	if(typeof(encodeURIComponent)!="undefined")
		encode=encodeURIComponent;
		
	var url="http://www.impowersoft.com/LiveSupport/CuteSoft_Client/CuteChat/"+"SupportRedirect.aspx?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.");
	}
}


