
days = new Array(7)
    days[1] = "lunes";
    days[2] = "martes";
    days[3] = "MIÉRCOLES"; 
    days[4] = "jueves";
    days[5] = "viernes";
    days[6] = "SÁBADO";
	days[7] = "domingo";
	
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()]
	date = today.getDate()
    month = months[today.getMonth() + 1]
    year=today.getYear(); 
if (year < 2000)
year = year + 1900;

    document.write ("<font color=#000000 face='Trebuche MS, Verdana, Helvetica, sans-serif'>"+ day +
    ", " + date + " de " + month + " del " + year +"</font> </b>")
