var pong;
function makeArray(n){
  this.length = n;
  for (i=1;i<=n;i++){
    this[i]=0;
  }
  return this;
}

// standard date display function with y2k compatibility
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 this_day_e = new makeArray(7);
  this_day_e[0]  = "Dom";
  this_day_e[1]  = "Seg";
  this_day_e[2]  = "Ter";
  this_day_e[3]  = "Qua";
  this_day_e[4]  = "Qui";
  this_day_e[5]  = "Sex";
  this_day_e[6]  = "Sáb";

  var today = new Date();
  var day   = today.getDate();
  var month = today.getMonth();
  var year  = today.getYear();
  var dia = today.getDay();

       if (year < 1000) {
              year += 1900;  }

  return( " "+ this_day_e[dia] + " - "+ day + " de " +this_month[month] +" de "+year);

}