function MostrarFecha(){
	var aMeses = ["Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre"];
	var aDias = ["Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "S&aacute;bado", "Domingo"];
	var dFecha = new Date();
	var sFecha = aDias[dFecha.getDay() - 1] + ", " + aMeses[dFecha.getMonth()] + " " + dFecha.getDate() + ", " + dFecha.getFullYear();
	document.write("<div style=\"margin-bottom: 10px; font-size: 11px; color: #999999; text-align: right;\">" + sFecha + "</div>");
}

MostrarFecha();