// VMNF.NET: Portal de Vitor M. N. Fernandes
// Basic javascript functions
function dw_today(){
  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 time=new Date();
  var lmonth=months[time.getMonth() + 1];
  var date=time.getDate();
	if (date<10)
	{
		date="0"+date;
	}
  var year=time.getYear();
  if (year < 2000)
  year = year + 1900;
  document.write("" + date + " de " + lmonth + " de " + year + "&nbsp;");
};