//<!--
function EsteAnio()
{
  a = new Date();
  document.write(a.getFullYear());
}

function Fecha()
{
  arrMeses = new Array(12);
  arrDias = new Array(7);

  arrMeses[0]="Enero";
  arrMeses[1]="Febrero";
  arrMeses[2]="Marzo";
  arrMeses[3]="Abril";
  arrMeses[4]="Mayo";
  arrMeses[5]="Junio";
  arrMeses[6]="Julio";
  arrMeses[7]="Agosto";
  arrMeses[8]="Septiembre";
  arrMeses[9]="Octubre";
  arrMeses[10]="Noviembre";
  arrMeses[11]="Diciembre";

  arrDias[0]="Domingo";
  arrDias[1]="Lunes";
  arrDias[2]="Martes";
  arrDias[3]="Miércoles";
  arrDias[4]="Jueves";
  arrDias[5]="Viernes";
  arrDias[6]="Sábado";

  strHoy    = new Date();
  esteDia   = strHoy.getDay();
  esteMes   = strHoy.getMonth();
  estaFecha = strHoy.getDate();

  strFecha = arrDias[esteDia] + ", " + estaFecha + " de " + arrMeses[esteMes];
  document.write(strFecha + " del ");
  EsteAnio();
}
//-->