function Fecha() {	
  	// Get Date
	data = new Date();	
	// Set Months
	months = new Array ("enero", "febrero", "marzo", "abril", "mayo", "junio", "julio", "agosto", "septiembre", "octubre", "noviembre", "diciembre");
	index = data.getMonth();
	// Set Day of the Week
	dayofweek = new Array ("domingo","lunes","martes","mi&eacute;rcoles","jueves","viernes","s&aacute;bado");
	indexday = data.getDay();
	// Set Year
	year = data.getYear();
	if (year < 1900) year = 1900 + year; // avoid "109"
	// Return Date	
	document.write(dayofweek[indexday] + " " + data.getDate() + " de " + months[index] + " del " + year);
}