<!--

 	var now = new Date(); 
	var estaFecha = now.getDate();
	var esteAno = now.getFullYear();
	var esteDia = now.getDay();
	var esteMes = now.getMonth();
	var estaHora = now.getHours(); 
	var esteMinuto = (now.getMinutes() < 10) ?  "0" + now.getMinutes() : now.getMinutes();  

	var dayNames = new Array("Domingo","Lunes","Martes","Mi&eacute;rcoles","Jueves","Viernes","S&aacute;bado");
       	var monthNames = new Array("Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio",
                               "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre");

	var fechaTotal ="<div id='datearriba'>" + dayNames[(esteDia)] + " " + (estaFecha) + " " + "de" + " " +
                      monthNames[(esteMes)] + " de " + (esteAno) + " " + " " + (estaHora) + ":" + (esteMinuto) + " hrs" + "</div>";  
// -->
