	//=======================================================================
	// this script disables right click in the browser
	//=======================================================================
	var message="Function Disabled!";

	//=======================================================================
	// Internet Explorer function
	//=======================================================================
	function clickIE4()
	{
		if (event.button==2)
		{
		 alert(message);
		 return false;
		}
    }

	//=======================================================================
	// Netscape Engine
	//=======================================================================
	function clickNS4(e)
	{
		if (document.layers||document.getElementById&&!document.all)
		{
		  if (e.which==2||e.which==3)
		  {
		  alert(message);
		  return false;
		  }
	    }
    }
    
	//=======================================================================
	// check for the browser if it has IE or Netscape engine
	//=======================================================================
	if (document.layers)
	{
	  document.captureEvents(Event.MOUSEDOWN);
	  document.onmousedown=clickNS4;
	}
	else if (document.all&&!document.getElementById)
	{
	  document.onmousedown=clickIE4;
	}

	//=======================================================================
	// return false when contextmenu is to be loaded
	//=======================================================================
	document.oncontextmenu=new Function("return false;")
