<html>
<head>
<title>
bloqueo boton
</title>
<script language="javascript">
<!--
function clock()
{
if(event.button==2)
{
alert("No esta permitido el uso del botón derecho en esta página");
}
}
//-->>
</script>
</head>
<body>
<a name="enlace" href=# onMouseDown="clock()">Enlace prohibido</a>
</body>
</html>