// JavaScript Document
//Inicio Bloqueo Boton Derecho
function BrowserCheck() {
    var b = navigator.appName
    if (b=="Netscape") this.b = "ns"
      else if (b=="Microsoft Internet Explorer") this.b = "mie"
      else this.b = b
    this.version = navigator.appVersion
    this.v = parseInt(this.version)
    this.ns = (this.b=="ns" && this.v>=4)
    this.ns4 = (this.b=="ns" && this.v==4)
    this.ns5 = (this.b=="ns" && this.v==5)
    this.mie = (this.b=="mie" && this.v>=4)
    this.mie4 = (this.version.indexOf('MSIE 4')>0)
    this.mie5 = (this.version.indexOf('MSIE 5')>0)
    this.min = (this.ns||this.ie)
    }

  is = new BrowserCheck()
  document.onmousedown = mouseDown
  if (is.ns) document.captureEvents(Event.MOUSEDOWN)

  function mouseDown(e) {
    if ((is.ns && e.which == 1) || (is.mie && event.button == 1)) {
      }
      else {
        if (is.mie) alert("NO TOCAR BOTON !!!")
          else if (is.ns) setTimeout('alert("NO TOCAR BOTON !!!")',50)
        }
      }
//Fin Bloque Boton Derecho
// Inicio Mensaje Barra Estado
var hoy = new Date();
  var anio = hoy.getYear();
  var mName = hoy.getMonth() + 1;
  var dName = hoy.getDay() + 1;
  var diaNr = ((hoy.getDate()<10) ? "" : "") + hoy.getDate();
  if(dName==1) Dia = "Domingo";
  if(dName==2) Dia = "Lunes" ;
  if(dName==3) Dia = "Martes";
  if(dName==4) Dia = "Miércoles";
  if(dName==5) Dia = "Jueves";
  if(dName==6) Dia = "Viernes";
  if(dName==7) Dia = "Sábado";
  if(mName==1) Mes = "Enero" ;
  if(mName==2) Mes = "Febrero";
  if(mName==3) Mes = "Marzo" ;
  if(mName==4) Mes = "Abril" ;
  if(mName==5) Mes = "Mayo" ;
  if(mName==6) Mes = "Junio" ;
  if(mName==7) Mes = "Julio" ;
  if(mName==8) Mes = "Agosto";
  if(mName==9) Mes = "Septiembre";
  if(mName==10) Mes = "Octubre";
  if(mName==11) Mes = "Noviembre";
  if(mName==12) Mes = "Diciembre";
  window.defaultStatus = "Protección Delta, S. A. - Seguridad Total... - " + Dia + " " + diaNr + " de " + Mes + " de " + anio
//Fin Mensaje Barra Estado
