
//

//<script>

// window ornaments, image url, and link text
var _liveHelpDialogFeature = "status=1,width=500,height=400,resizable=1";
var ImageURL='/images/btn_livecustserv.gif';
var LinkText='href="###" onclick="OpenLiveSupport()"';

ImageURL= "<img src=\"" + ImageURL + "\" width=\"104\" height=\"26\" class=\"nav-livecust\" border=\"0\" />";

// write the live support button to the page
document.write('<a ' + LinkText + '>' + ImageURL + '</a>');


// open the window
function OpenLiveSupport()
{
	var url="/OnlineChat/CuteSoft_Client/CuteChat/SupportRedirect.aspx?Referrer="+(new Date().getTime());
	
	var win;
	try
	{
		win=window.open(url,'',_liveHelpDialogFeature);
	}
	catch(x)
	{
	}
	
	if(win==null)
	{
		alert("Pop-up blocker detected.");
	}
}


