<!-- hide script from old browsers

var months=new Array(13);
months[1]="de Enero";
months[2]="de Febrero";
months[3]="de Marzo";
months[4]="de Abril";
months[5]="de Mayo";
months[6]="de Junio";
months[7]="de Julio";
months[8]="de Agosto";
months[9]="de Septiembre";
months[10]="de Octubre";
months[11]="de Noviembre";
months[12]="de Diciembre";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000)
year = year + 1900;
document.write(+ date + " ");
document.write(lmonth + ", " + year + " ");

// end hiding script from old browsers -->