function underConstruction()
{
	 alert("The page you are tring to navigate to is currently under construction");
	 return false;
}

function unplayed()
{
	 alert("This match is yet to be played. \nMatch report to follow");
	 return false;
}

function NotAvailable()
{
	 alert("Currently not available \nPlease check back later");
	 return false;
}

function disableRightClick()
{
	var message="Sorry, the right-click function has been disabled on this page.\n\n\www.glasgowansar.com"; // Message for the alert box

	// Don't edit below!
	
	function click(e) 
	{
		if (document.all) 
		{
			if (event.button == 2) 
			{
				alert(message);
				return false;
			}
		}
		if (document.layers) 
		{
			if (e.which == 3)
			{
				alert(message);
				return false;
			}
		}
	}
	
	if (document.layers) 
	{
		document.captureEvents(Event.MOUSEDOWN);
	}
	document.onmousedown=click;

}