
var pong;

function makeArray(n){
  this.length = n;
  for (i=1;i<=n;i++){
    this[i]=0;
  }
  return this;
}

function displayDate() {
	var this_month = new makeArray(12);
    this_month[0]  = "Janeiro";
    this_month[1]  = "Fevereiro";
    this_month[2]  = "Março";
    this_month[3]  = "Abril";
    this_month[4]  = "Maio";
    this_month[5]  = "Junho";
    this_month[6]  = "Julho";
    this_month[7]  = "Agosto";
    this_month[8]  = "Setembro";
    this_month[9]  = "Outubro";
    this_month[10] = "Novembro";
    this_month[11] = "Dezembro";
	var today = new Date();
	var day   = today.getDate();
	var month = today.getMonth();
	var year  = today.getYear();
	if (year< 1900) {
		year += 1900;
	}
   return(day+" de "+this_month[month]+" de "+year);
}





