
//

//<script>

// Default window ornaments for the live help dialog
var _liveHelpDialogFeature = "status=1,width=500,height=400,resizable=1";



function WriteLiveSupportButton()
{


	var ImageURL='http://store.bamboosolutions.com/CuteSoft_Client/CuteChat/images/141x44-offline.gif';

	ImageURL= "<img title=\"Click to chat with Bamboo Pre-Sales\" src=\""+ImageURL+"\" border=0>";

	// write the live support button to the page
	document.write('<a href=\"###\" onclick=\"OpenLiveSupport()\">'+ImageURL+'</a>');

}

WriteLiveSupportButton();

function OpenLiveSupport()
{
	var url="http://store.bamboosolutions.com/CuteSoft_Client/CuteChat/"+"SupportRedirect.aspx?Referrer="+escape(document.referrer)+"&Url="+escape(location.href)+"&_time="+(new Date().getTime());
	var win;
	try
	{
	    //Khiem Code
	    var IsAgenOnline = "False";
	    
	    if(IsAgenOnline=="False")
	    {
	        window.location.href="../../BambooInquiry.aspx";
	        win="true";
	    }
	    else
	    //End Khiem Code
		    win=window.open(url,'',_liveHelpDialogFeature);
	}
	catch(x)
	{
	}
	
	if(win==null)
	{
		alert("Pop-up Blocker Detected.");
	}
}


