
//

//<script>

// Default window ornaments for the live help dialog
var _liveHelpDialogFeature = "status=1,width=500,height=450,resizable=1";



function WriteLiveSupportButton()
{


	var ImageURL='http://support.roll-a-way.com/CuteSoft_Client/CuteChat/images/chat-online-01.jpg';


	if (ImageURL != "")
	{
		ImageURL= "<img title=\"support chat\" src=\""+ImageURL+"\" border=0>";

		// write the live support button to the page

		document.write('<div onclick="hidepopup()" id="divblackbackground" class="divblackendbackground divmaincontentinvis"></div><div id="divpopup" class="divmaincontentinvis"><div class="divpopupclose"><a href="#" onclick="hidepopup();" ><img src="http://support.roll-a-way.com/CuteSoft_Client/CuteChat/images/close2.gif"/></a></div><div class="divpopupcontent"><a href=\"###\" onclick=\"OpenLiveSupport();hidepopup()\">'+ImageURL+'</a></div></div><script type="text/javascript">startTimer(5000);</script>');

	}

}

WriteLiveSupportButton();

function OpenLiveSupport()
{
	var encode=escape
	if(typeof(encodeURIComponent)!="undefined")
		encode=encodeURIComponent;
		
	var url="http://support.roll-a-way.com/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.");
	}
}


