// JavaScript for the taster pages
// These functions will either show an alert saying the feature is disabled or
// redirect the user to a taster page FAQ/Help page.

function fnTDDisabledAlert() {

	alert("This feature has been disabled.\r\nRegister / Login for the full service");
	
}

function fnTDDisabledRedirect() {

	location.href="tasterpage.htm"
	
}

function fnTDDisabledPopUp() {

	var ad_url = "tasterpopup.htm";
	var hwnd = window.open(ad_url,"SelectChannel","width=416,height=300,resizable=no,scrollbars=no,left=300,top=200");// is this spelled right 'SelectChannle'?
	if ((document.window != null) && (!hwnd.opener)) {
		hwnd.opener = document.window;
	}

}