var months=new Array(13);
months[1]="de Janeiro";
months[2]="de Fevereiro";
months[3]="de Março";
months[4]="de Abril";
months[5]="de Maio";
months[6]="de Junho";
months[7]="de Julho";
months[8]="de Agosto";
months[9]="de Setembro";
months[10]="de Outubro";
months[11]="de Novembro";
months[12]="de Dezembro";
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(date + " ");
document.write(lmonth + ", " + year);
