// JavaScript Document
function esconde(){
    window.status="";
    return true
}

function hoy()
{
   var mes = new Array(13);
   mes[0]  = "Enero";
   mes[1]  = "Febrero";
   mes[2]  = "Marzo";
   mes[3]  = "Abril";
   mes[4]  = "Mayo";
   mes[5]  = "Junio";
   mes[6]  = "Julio";
   mes[7]  = "Augosto";
   mes[8]  = "Septiembre";
   mes[9]  = "Octubre";
   mes[10] = "Noviembre";
   mes[11] = "Diciembre";
   var now         = new Date();
   var numMes      = now.getMonth();
   var nomMes      = mes[numMes];
   var dia         = now.getDate();
   var anno        = now.getYear();
   if(anno < 2000) { anno = anno + 1900; }
   var fechaTxt = nomMes + ' ' + dia + ', ' + anno;
   return fechaTxt;
}



