<!--
todaysDate = new Date(); dayarray = new
Array("Domingo", "Lunes", "Martes", "Miercoles", "Jueves", "Viernes",
"Sabado"); montharray = new Array("Enero", "Febrero", "Marzo", "Abril",
"Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre");
document.write(dayarray[todaysDate.getDay()] + ", " +
montharray[todaysDate.getMonth()] + " " + todaysDate.getDate() + ", "); if
(todaysDate.getYear()
<1000){ document.write(todaysDate.getYear() + 1900); } else { document.write(todaysDate.getYear());
} 
// end -->
