/*
SCRIPT EDITE SUR L'EDITEUR JAVACSRIPT
largement modifié par Jean-Charles CAILLARD
*/
function clicie() {
	// Fonction de détection pour Internet Explorer
	if ((event.button==2)||(event.button==3)) {
		alert("Fonction désactivée");
	}
}
function clicns(e){
	// Fonction pour Netscape
	if(e.which==3){
		alert("Fonction désactivée");
		return false;
	}
}
if (document.all) {	document.onmousedown=clicie;}
if (document.layers) {document.captureEvents(Event.MOUSEDOWN); document.onmousedown = clicns;}
if (window.sidebar) {document.captureEvents(Event.MOUSEDOWN); document.onmousedown = clicns;}

