			<!-- 
			var time=new Date();
			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 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("Blumenau, " + date + " de ");
				document.write("<right>" + lmonth + " ");
				document.write("de " + year + ".</right>");
			-->