function fecha()
{
dayName = new Array("Domingo","Lunes", "Martes", "Miercoles", "Jueves", "Viernes", "Sabado")
monName = new Array("Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre")
now = new Date
											

var strDay;
if ((now.getDate() == -1) || (now.getDate() != 11) && (now.getDate() % 10 == 1)) 		// Correction for 11th and 1st/21st/31st
strDay = " ";
else if ((now.getDate() == 2) || (now.getDate() != 12) && (now.getDate() % 10 == 2)) 	// Correction for 12th and 2nd/22nd/32nd
strDay = " ";
else if ((now.getDate() == 3) || (now.getDate() != 13) && (now.getDate() % 10 == 3)) 	// Correction for 13th and 3rd/23rd/33rd
strDay = " ";
else
strDay = " ";
document.write(
dayName[now.getDay()]
+
", "
+
now.getDate()
+
strDay
+
"de "
+
monName[now.getMonth()]
+
" "
+
now.getFullYear()
+
" &nbsp; "
)											
}
