if(document.getElementById){  // si se trata de Netscape 6
  Refcapa='document.getElementById("'
  Refestilo='").style'
  Reftop='.top'
  Refleft='.left'
}else if(document.layers){    // si se trata de Netscape 4
  Refcapa='document.'
  Refestilo=''
  Reftop='.top'
  Refleft='.left'
}else if(document.all){       // si se trata de Internet Explorer 4
  Refcapa=''
  Refestilo='.style'
  Reftop='.pixelTop'
  Refleft='.pixelLeft'
}

function mostrar(capa){
  eval(Refcapa+capa+Refestilo+'.visibility="visible"');
  eval(Refcapa+capa+Refestilo+'.position="relative"');
}

function ocultar(capa){
  eval(Refcapa+capa+Refestilo+'.visibility="hidden"');
  eval(Refcapa+capa+Refestilo+'.position="absolute"');
}


   function initArray() {  
      this.length = initArray.arguments.length
      for (var i = 0; i < this.length; i++)
      this[i+1] = initArray.arguments[i]
   }
DOWArray = new initArray("Domingo","Lunes","Martes","Miércoles","Jueves","Viernes","Sábado");
MOYArray = new initArray("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre");
hoy=new Date();
min= hoy.getMinutes();
nmin= ((min < 10) ? ":0" : ":") + min;


