//--------------------------- STOP CODIGO BTN DERECHO RATON ------------------------

function click(e){
  var mensaje = 'Pagina Web del Cabañal copyright © I.E.S "EL CABANYAL"\n\n Mantenimiento: Dpto. de Electrónica del I.E.S. El Cabanyal';
  if (document.all) {
    if (event.button == 2) {
      alert(mensaje);
      return false;
      }
    }
  if (document.layers) {
    if (e.which == 3) {
      alert(mensaje);
      return false;
      }
    }
  }

if (document.layers) document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=click;

//--------------------------- FIN STOP CODIGO BTN DERECHO RATON --------------------