<!-- Begin
		var months=new Array(13);
		months[1]="Janeiro";
		months[2]="Fevereiro";
		months[3]="Mar&ccedil;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(date + " de " + lmonth + " de " + year);
// End -->
