<!-- Begin

var months=new Array(13);

months[1]="enero";

months[2]="febrero";

months[3]="marzo";

months[4]="abril";

months[5]="mayo";

months[6]="junio";

months[7]="julio";

months[8]="agosto";

months[9]="setiembre";

months[10]="octubre";

months[11]="noviembre";

months[12]="diciembre";

var time=new Date();

var lmonth=months[time.getMonth() + 1];

var date=time.getDate();

var year=time.getYear();

if (year < 2000)    // Y2K Fix, Isaac Powell

year = year + 1900; // http://onyx.idbsu.edu/~ipowell

document.write("<left><font face=arial color=#003399 size=1><bold>"  + "Nueva York,  " + " ");

document.write(" "  + date + " de  ");

document.write(lmonth + " de " + year + "</bold></font></center>");

// End -->