<script language="Javascript1.2">

mensaje = "Estas funciones estan deshabilitadas. Las imagenes que se muestran son propiedad de Ambar Multimedia y no pueden ser copiadas ni utilizadas sin autorizacion.";

version  = parseInt(navigator.appVersion)
NS = navigator.appName=="Netscape"
IE = navigator.appName=="Microsoft Internet Explorer"

document.onmousedown = nrc;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (NS && version<5) window.onmousedown = nrc;

function nrc(e) {
   if (NS && e.which > 1){
      alert(mensaje)
      return false
   } else if (IE && (event.button >1)) {
     alert(mensaje)
     return false;
   }
}
</script>
