function myDate(){
days = new Array(7)
	days[0] = "Domingo";
    days[1] = "Lunes";
    days[2] = "Martes";
    days[3] = "Miércoles"; 
    days[4] = "Jueves";
    days[5] = "Viernes";
    days[6] = "Sábado";
    months = new Array(12)
    months[1] = "enero";
    months[2] = "febrero";
    months[3] = "marzo";
    months[4] = "abril";
    months[5] = "mayo";
    months[6] = "junio";
    months[7] = "julio";
    months[8] = "agosto";
    months[9] = "septiembre";
    months[10] = "octubre";
    months[11] = "noviembre";
    months[12] = "diciembre";
    today = new Date(); day = days[today.getDay()]
    month = months[today.getMonth() + 1]
    date = today.getDate()
    year=today.getYear(); 
if (year < 2000)
	year = year + 1900;
document.write ( date + " de " + month + " de " + year)
//document.write ("Bogotá, " + day + " " + date + " de " + month + " de " + year)
}