<!--
function fecha()
{
var weekdays = new Array(6);
var months = new Array(11);

var today = new Date();
var month = today.getMonth();
var date = today.getDate();
var weekday = today.getDay();
var year = today.getYear();
//year = year + 1900;
//document.write(year+"&"+today+"&"+month+"&"+date+"&"+year+"&"+weekday);
today = null;
	
weekdays[0] = "domingo";
weekdays[1] = "lunes";
weekdays[2] = "martes";
weekdays[3] = "mi&eacute;rcoles";
weekdays[4] = "jueves";
weekdays[5] = "viernes";
weekdays[6] = "s&aacute;bado";

months[0] = "enero";
months[1] = "febrero";
months[2] = "marzo";
months[3] = "abril";
months[4] = "mayo";
months[5] = "junio";
months[6] = "julio";
months[7] = "agosto";
months[8] = "septiembre";
months[9] = "octubre";
months[10] = "noviembre";
months[11] = "diciembre";

document.write("" );

document.write(weekdays[weekday] + ", " + date + " de " +
	months[month] + " de " + year);
}
//-->
