 // -- made by A1javascripts.com, please keep these credits when using this script
    days = new Array(7)
    days[1] = "Domingo";
    days[2] = "Lunes";
    days[3] = "Martes"; 
    days[4] = "Miércoles";
    days[5] = "Jueves";
    days[6] = "Viernes";
    days[7] = "Sábado";
    months = new Array(12)
    months[1] = "ene";
    months[2] = "feb";
    months[3] = "mar";
    months[4] = "abr";
    months[5] = "may";
    months[6] = "jun";
    months[7] = "jul";
    months[8] = "ago";
    months[9] = "sep";
    months[10] = "oct"; 
    months[11] = "nov";
    months[12] = "dic";
    today = new Date(); day = days[today.getDay() + 1]
    month = months[today.getMonth() + 1]
    date = today.getDate()
    year=today.getYear(); 
if (year < 2000)
year = year + 1900;
    document.write ("<font size=-4 face='Verdana, Helvetica, sans-serif' color=#ffffff> "+ day +
    ", " + date + " " + " " + month + "" + ". " + year + "</font>")
    // -- end hiding 
