// JavaScript Document
 function displayDate(){
      var this_month = new Array(12);
      this_month[0]  = "Enero";
      this_month[1]  = "Febrero";
      this_month[2]  = "Marzo";
      this_month[3]  = "Abril";
      this_month[4]  = "Mayo";
      this_month[5]  = "Junio";
      this_month[6]  = "Julio";
      this_month[7]  = "Agosto";
      this_month[8]  = "Septiembre";
      this_month[9]  = "Octubre";
      this_month[10] = "Noviembre";
      this_month[11] = "Diciembre";
  	  
	  var this_day = new Array(7);
      this_day[0]  = "Domingo";
	  this_day[1]  = "Lunes";
      this_day[2]  = "Martes";
      this_day[3]  = "Miercoles";
      this_day[4]  = "Jueves";
      this_day[5]  = "Viernes";
      this_day[6]  = "Sábado";
      
	  var today = new Date();
      var diaSemana = today.getDay();
      var day   = today.getDate();
      var month = today.getMonth();
      var year  = today.getYear();
      if (year < 1900){
         year += 1900;
      }
      return("<font size=2 face=Arial Black color=#336666>"+this_day[diaSemana]+", "+day+" "+this_month[month]+" " +year+"</font>");
 }
 document.write(displayDate());
 /*today = new Date();
  document.write("<strong><font face=Arial Black color=#000080 size=2> Hoy es </font>",

                  "<font color=#000000>", today.getDate(), "/", today.getMonth()+1, "/", today.getYear(), "</font>")

  document.write("<font face=Arial Black color=#000080 size=2> y son las </font>",

                  "<font color=#000000>", today.getHours(), ":", today.getMinutes(), ":", today.getSeconds(), "</strong></FONT>")*/
// ---------------------------------------------------------------------->
