// JavaScript Document

<!-- SCRIPT DE BLOCAGE DU CLIC DROIT DE LA SOURIS par Chen-Do L. (C) 2001 !-->
var ns=0, ie=1;

if (navigator.appName=="Netscape")  {
    document.captureEvents (Event.ONMOUSEDOWN);
	document.onmousedown = disableContextMenu;
	ns++; ie--;
	} else {
	        document.oncontextmenu = disableContextMenu;
			}
			
			function disableContextMenu(e) {
			   if (ie)
			      return false;
			   else
			      if (e.which != 1) return false;
				  }
//-->

