//javascript:
// -----------------------------------------------------------------------
// 1999-2004 Código creado por Manuel de la Herrán Gascón 
// manu AT okte DOT com
// http://www.okte.com/ http://www.manuherran.com/ http://www.redcientifica.com/
// -----------------------------------------------------------------------
// fLongTodayDate
// fEngLongTodayDate
// -----------------------------------------------------------------------
function fLongTodayDate() {
  currentTime = new Date();
  var listaDays = new Array ("Domingo", "Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado");
  var listaMonths = new Array ("Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre");
  var day = currentTime.getDay();
  var mon = currentTime.getMonth();
  var year = currentTime.getYear()
  if (year > 100 && year < 2000) {
    year = year + 1900;
  }
  return (listaDays[day] + ", " + currentTime.getDate() + " de " + listaMonths[mon] + " de " + year);
}
// -----------------------------------------------------------------------
function fEngLongTodayDate() {
  currentTime = new Date();
  var listaDays = new Array ("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
  var listaMonths = new Array ("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
  var day = currentTime.getDay();
  var mon = currentTime.getMonth();
  var year = currentTime.getYear()
  if (year > 100 && year < 2000) {
    year = year + 1900;
  }
  return (listaDays[day] + ", " + currentTime.getDate() + " " + listaMonths[mon] + " " + year);
}
// -----------------------------------------------------------------------





