NS = navigator.appName=="Netscape"
IE = navigator.appName=="Microsoft Internet Explorer"
Ver = parseInt(navigator.appVersion)
message = "Clic Droit de Souris Non Autorisé";

document.onmousedown = NoClic;    // Capture sous Netscape 6 et IE
if (document.layers) {         // Capture sous Netscape 4.X
   window.captureEvents(Event.MOUSEDOWN);
   window.onmousedown = NoClic;
}

function NoClic(leclic) {          // Affichage du message d'alerte
if (NS && leclic.which > 1){
alert(message)
return false
} else if (IE && (event.button >1)) {
alert(message)
return false;
}
}


		
	