// JavaScript Document
function showDate()
{
  var months = new Array('Janeiro', 'Fevereiro', 'Março', 'Abril', 'Maio', 'Junho', 'Julho', 'Agosto', 'Setembro', 'Outubro', 'Novembro', 'Dezembro');
  var now = new Date();
  var day = now.getDay();
  var today = now.getDate();
  var month = now.getMonth();
  var year = now.getFullYear();


dateStamp = two_digit(today) + ' de ' + months[month] + ' de ' + year; document.write(dateStamp);
}
 function two_digit(value)
  {
    var s = value + '';

    if (s.length == 1)
      return('0' + s); else
        return(s);
  }

//-->