// JavaScript Document
// Fecha
var fecha=new Date();
var diames=fecha.getDate();
var mes=fecha.getMonth() +1 ;
var ano=fecha.getFullYear();

var textomes = new Array (12);
  textomes[1]="Enero";
  textomes[2]="Febrero";
  textomes[3]="Marzo";
  textomes[4]="Abril";
  textomes[5]="Mayo";
  textomes[6]="Junio";
  textomes[7]="Julio";
  textomes[7]="Agosto";
  textomes[9]="Septiembre";
  textomes[10]="Octubre";
  textomes[11]="Noviembre";
  textomes[12]="Diciembre";

document.write("Buenos Aires, " + diames + " de " + textomes[mes] + " de " + ano + "<br>");
//
