//*****************************************************************//
//*********** (c) BY FREDERIC CHAPPE, 2004-2009 *******************//
//*****************************************************************//
if(navigator.appName.substring(0,3) == "Net")	document.captureEvents(Event.MOUSEMOVE);	
//---------------------------------------------------------------------------
function RightClickOFF()
{
	document.oncontextmenu = ShowMessageRightClick;
	document.onclick = ShowMessageRightClick;
}
//---------------------------------------------------------------------------
function RightClickON()
{
	document.oncontextmenu = null;
	document.onclick = null;
}
//---------------------------------------------------------------------------
function ShowMessageRightClick()
{
	alert("(C) Copyright 2001 pdp-pgap.com");
	return(false);
}
//---------------------------------------------------------------------------

