
//



// Default window ornaments for the live help dialog
var _liveHelpDialogFeature = "status=1,width=570,height=566,resizable=1";

function WriteLiveSupportButton()
{
	var ImageURL='http://askntu.ntu.edu.sg/iChat_CITS/CuteSoft_Client/CuteChat/Images/logo_offline.png';
	
	ImageURL= '<img src="'+ImageURL+'" border="0" title="FlexAnswer iChat" alt="FlexAnswer iChat" />';
	
	// write the FlexAnswer Live Chat button to the page
	document.write('<a href="###" onclick="OpenLiveSupport()">'+ImageURL+'</a>');
}

WriteLiveSupportButton();

function OpenLiveSupport()
{
	var url = "http://askntu.ntu.edu.sg/iChat_CITS/CuteSoft_Client/CuteChat/"+"LiveChatRedirect.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.");
	}
}