    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] = "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] = "Octobre"; 
    months[11] = "Noviembre";
    months[12] = "Diciembre";
    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=-2 face='Tahoma, Arial, Helvetica, sans-serif' color=#8093A9>" +"<B>" + day + ", " + month + " " + date + "," + "  " + " " + " " + year + "</B>" + "</font>&nbsp;")
    // -- end hiding 

Stamp = new Date();
var Hours;
var Mins;
var Time;
Hours = Stamp.getHours();
if (Hours >= 12) {
Time = " P.M.";
}
else {
Time = " A.M.";
}
if (Hours > 12) {
Hours -= 12;
}
if (Hours == 0) {
Hours = 12;
}
Mins = Stamp.getMinutes();
if (Mins < 10) {
Mins = "0" + Mins;
}	
document.write('<font size="1" color="#F7A311" face="Tahoma, Arial, Helvetica, san-serif">'+'<B>' + Hours + ":" + Mins + Time + ' '+' '+'</B>'+'</font>');
// End -->
