
var d=new Date()
var dayname=new Array("Domingo", "Lunes","Martes","Miércoles","Jueves","Viernes","Sábado")
var monthname=new Array("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre")

document.write('<span class="actualizacion">');
document.write(dayname[d.getDay()]);
document.write(', ');
document.write(d.getDate());
document.write(' de ');
document.write(monthname[d.getMonth()]);
document.write(' de ');
document.write(d.getFullYear());
document.writeln('</span><img src="../../img_comun/pix_t.gif" width="5" height="1" alt="" border="0" align="absbottom">');
