function ShowTodayDate() {
		now = new Date()
		dia = now.getDate()
		mes = now.getMonth()
		ano = now.getYear()
		meses = new Array("Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro");

		if (dia < 10)
			dia = "0" + dia
		/*if (mes < 10)
			mes = "0" + mes*/
		if (ano < 2000)
			ano = "19" + ano

		document.write(dia+" de " +meses[mes]+ " de " +ano)

	}