
//

//<script>

// Default window ornaments for the live help dialog
var _liveHelpDialogFeature = "status=1,width=700,height=400,resizable=0";



function WriteLiveSupportButton()
{


	var ImageURL='http://access.nku.edu/CuteLiveSupportLibrary/CuteSoft_Client/CuteChat/images/chat_offline.jpg';

	ImageURL= "<img title=\"Click for help from the NKU Steely Library\" 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://access.nku.edu/CuteLiveSupportLibrary/CuteSoft_Client/CuteChat/"+"SupportRedirect.aspx?Referrer="+escape(document.referrer)+"&Url="+escape(location.href)+"&_time="+(new Date().getTime());
	var win;
	try
	{
		win=window.open(url,'','status=1,width=750,height=550,resizable=1');
	}
	catch(x)
	{
	}
	
	if(win==null)
	{
		alert("Pop-up Blocker Detected. Please allow pop-ups on this site to access online support. Call us at 859-572-6911 if you need assistance.");
	}
}


