<!-- début
function non(clic) {
var msg="ATTENTION ! Copie interdite : vous vous exposez à des poursuites pénales !";
if (navigator.appName == 'Netscape' && clic.which==3) {
alert(msg);
return false;}
else
if (navigator.appName == 'Maxthon' && event.button==2) {
alert(msg);
return false;}
else
if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) {
alert(msg);
return false;
}
return false;
}
document.onmousedown = non;
// fin -->