
<!--
 function click(e) {
 // Explorer
 if (IE)
 if (event.button == 2){
 accion() ;
 return false ;
 }

 // Netscape
 if (NS)
 if (e.which == 3) {
 accion() ;
 return false ;
 }
 }

 function accion() {
 window.status = String.fromCharCode(169)+' Copyright' ;
 alert(String.fromCharCode(169)+' Todas las imágenes contenidas en este espacio están protegidas por leyes de derecho de autor internacionales. Su reproducción sin una autorización escrita queda prohibida');
 return ;
 }

 var NS = (document.layers) ;
 var IE = (document.all) ;
 if (NS) document.captureEvents(Event.MOUSEDOWN) ;
 document.onmousedown = click ;


function event_false() {
         window.event.returnValue = false
   }
document.onselectstart = event_false
-->


