// Don't allow right mouse click on page
function fnRightClickDisable()
{
	if (event.button == 2)
	{alert("Sorry - no right click on this page.");}
}