<!--
today = new Date();
i = today.getMonth();
if (i == 0) month = "Janeiro";
else if (i == 1) month = "Fevereiro";
else if (i == 2) month = "Março";
else if (i == 3) month = "Abril";
else if (i == 4) month = "Maio";
else if (i == 5) month = "Junho";
else if (i == 6) month = "Julho";
else if (i == 7) month = "Agosto";
else if (i == 8) month = "Setembro";
else if (i == 9) month = "Outubro";
else if (i == 10) month = "Novembro";
else if (i == 11) month = "Dezembro";
year = today.getYear();
if (year <= 101) { year += 1900; }
strDate = today.getDate() + " - " + month + " - " + year;
document.write( strDate );    
// -->