<html>
<head>
<title> </title>
<script LANGUAGE="JavaScript">
<!--
var msg = "Pas de clic
droit !!! ";
function noclick(scx)
{
if (navigator.appName
== "Netscape" && scx.which == 3) {
alert(msg);
return
false;
}
if (navigator.appVersion.indexOf("MSIE")
!= -1 && event.button == 2) {
alert(msg);
return
false;
}
}
if (document.layers)
{
document.captureEvents(Event.MOUSEDOWN);
}
if (navigator.appVersion.indexOf("MSIE")
!= -1)
document.onmousedown
= noclick;
else if (document.layers)
document.onmousedown
= noclick;
else if (document.getElementById)
//NS6
document.onmouseup
= noclick;
//-->
</script>
</head>
<body>
</body>
</html> |