/* AUTEUR: JEAN-CLAUDE CHESNEAU */
/* DATE DE CREATION: 04/04/2003 */

function right(e) {
var msg = "La reproduction des textes et images est interdite sans autorisation.";
if (navigator.appName == 'Netscape' && e.which == 3) {
alert(msg); 
return false;
}
else
if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) {
alert(msg); 
return false;
}
return true;
}
document.onmousedown = right;