
	
function fecha(){

	hoy = new Date();
	
	var dia = new Array( "Domingo", "Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado" );
	
	var mes = new Array( "Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre");
	
	var anio = hoy.getYear();
	
	 if(navigator.appName == "Netscape")
	     var anio = hoy.getYear() + 1900;

	var fecha = document.getElementById("fecha");
	
	var html;
	
	html =  "<font color='#A4A4A4'>\n";
	html += "\t<b>\n";
	html += "\t\t" + dia[hoy.getDay()] + ", " + hoy.getDate() + " de " + mes[hoy.getMonth()] + " de " + anio;
	html += "\t</b>\n";
	html += "</font>";
	
	fecha.innerHTML = html;
}