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)
year = year + 1900;
document.write("<center>Modificacion : " + lmonth + " ");
document.write(date + ", " + year + "<\/center>");

     