<!-- 
//PLF-http://www.jejavascript.net/
function noclic(clicno) {
var mess="Interdiction du clic droit"; //changer le message
if (navigator.appName == 'Netscape' && clicno.which==3) {
alert(mess);
return false;}
else
if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) {
alert(mess);
return false;
}
return true;
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown = noclic;
//-->

