crosoft = false;
scape = false;
if (navigator.appName.indexOf("Microsoft") != -1) crosoft = true;
if (navigator.appName.indexOf("Netscape") != -1) scape = true;
if (scape)
{ captureEvents (Event.MOUSEDOWN);
onMouseDown = capturer;
}
if (crosoft)
{ document.onmousedown = intercepter;
}
function capturer(e)
{ if (e.which == 3) 
{ alert("Copyright © All rights reserved - Tous droits réservés");
return false;
}
}
function intercepter()
{ if (event.button == 2 && event.srcElement.tagName == "IMG")
alert("Copyright © All rights reserved - Tous droits réservés");
}

