// Author John-Paul Voisin
// Fonction pour interdire le click droit sur la page

var doh = "-- Tous droits réservés © 2008 GO-Assurances --";
function noclick(scx) {
if (navigator.appName == "Netscape" && scx.which > 1) {
alert(doh);
return false; }
if (navigator.appVersion.indexOf("MSIE") != -1 && event.button > 1) {
alert(doh);
return false; } }
document.onmousedown = noclick