// JavaScript Document
today = new Date
weekDayName = new Array ("Domingo","Lunes","Martes","Mi&eacutercoles","Jueves","Viernes","S&aacutebado")
monthName = new Array ("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre")

function printDate()
{
  document.write("<b>" + weekDayName[today.getDay()] + " " + today.getDate() + " de  " + monthName[today.getMonth()]  + ", 2010 " + "</b>")
}
 