Today = new Date();Day = Today.getDate();Month = Today.getMonth();Year = Today.getYear();if (Month == 0) Month = "Enero";if (Month == 1) Month = "Febrero";if (Month == 2) Month = "Marzo";if (Month == 3) Month = "Abril";if (Month == 4) Month = "Mayo";if (Month == 5) Month = "Junio";if (Month == 6) Month = "Julio";if (Month == 7) Month = "Agosto";if (Month == 8) Month = "Septiembre";if (Month == 9) Month = "Octubre";if (Month == 10) Month = "Noviembre";if (Month == 11) Month = "Diciembre";if (Year<2000){  Year = 1900 + Year;}if (Year == 00){  Year = 2000}document.write(Day +" "+ Month +" "+ Year);