<!-- Begin
var months=new Array(13);
months[1]="janeiro";
months[2]="fevereiro";
months[3]="março";
months[4]="abril";
months[5]="maio";
months[6]="junho";
months[7]="julho";
months[8]="agosto";
months[9]="setembro";
months[10]="outubro";
months[11]="novembro";
months[12]="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("<right>" + date + " de ");
document.write(lmonth + " de " + year + "</right>");
// End -->