    
	<!--
	function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  	if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    	document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  	else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
	}
	MM_reloadPage(true);
	
	
	// ***********************************************
// AUTHOR: WWW.CGISCRIPT.NET, LLC
// URL: http://www.cgiscript.net
// Use the script, just leave this message intact.
// Download your FREE CGI/Perl Scripts today!
// ( http://www.cgiscript.net/scripts.htm )
// ***********************************************
	message = "Function Disabled!";
	function NoRightClick(b)
	{
		if(((navigator.appName=="Microsoft Internet Explorer")&&(event.button > 1)) ||((navigator.appName=="Netscape")&&(b.which > 1)))
		{
			alert(message);
			return false;
		}
	}
	document.onmousedown = NoRightClick;
// -->
	// ***********************************************
	// AUTHOR: WWW.CGISCRIPT.NET, LLC
	// URL: http://www.cgiscript.net
	// Use the script, just leave this message intact.
	// Download your FREE CGI/Perl Scripts today!
	// ( http://www.cgiscript.net/scripts.htm )

	// ***********************************************

	var isNS = (navigator.appName == "Netscape") ? 1 : 0;
	var EnableRightClick = 0;
	if(isNS) 
	document.captureEvents(Event.MOUSEDOWN||Event.MOUSEUP);
	function mischandler()
	{
		if(EnableRightClick==1)
		{
			return true;
		}
		else
		{
			return false;
		}
	}
	
	function mousehandler(e)
	{
		if(EnableRightClick==1)
		{
			return true;
		}
		var myevent = (isNS) ? e : event;
		var eventbutton = (isNS) ? myevent.which : myevent.button;
		if((eventbutton==2)||(eventbutton==3))
			return false;
	}
	
	function keyhandler(e)
	{
		var myevent = (isNS) ? e : window.event;
		if (myevent.keyCode==96)
		EnableRightClick = 1;
		return;
	}
	
	document.oncontextmenu = mischandler;
	document.onkeypress = keyhandler;
	document.onmousedown = mousehandler;
	document.onmouseup = mousehandler;
	//-->
	
   


