
//

//<script>

// Default window ornaments for the live help dialog
var _liveHelpDialogFeature = "status=1,width=500,height=400,resizable=1";



function WriteLiveSupportButton()
{
	var ImageURL='http://chat.access.wa.gov/CuteSoft_Client/CuteChat/images/smartbutton_on.gif';
	
	if("True" == "True")
	{
	ImageURL= "<img title=\"Request a chat\" alt=\"Request a chat\" src=\""+ImageURL+"\" border=0>";
	document.write('<a href=\"###\" onclick=\"OpenLiveSupport()\">'+ImageURL+'</a>');
	}
	else 
    {
    ImageURL= "<img title=\"Send an email\" alt=\"Send an email\" src=\""+ImageURL+"\" border=0>";
	document.write('<a href=http://access.wa.gov/support/contact_us.aspx>'+ImageURL+'</a>');
    }	
}

WriteLiveSupportButton();

function OpenLiveSupport()
{
	var url="http://chat.access.wa.gov/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.");
	}
}


