<!--
	document.oncontextmenu=function()
	{
		return false;
	}

	if(navigator.appName=="Netscape")
	{ 
		document.captureEvents(Event.MOUSEDOWN); 
		document.onmousedown= function(e)
		{
			if(e.which==2||e.which==3)
				return false;
		}
	};
//-->



