// fonction qui désactive clique droit...
function right(evnt)
{
var msg = "Bouton droit non actif.";
if (navigator.appName.toUpperCase().match(/NETSCAPE/) != null)
{
if (evnt.which >= 2)
{
alert(msg);
return false;
}
}
else
if (event.button>=2)
alert(msg);
}
document.onmousedown=right;
