<!-- Reloj -->
var timeClock;
var Months = new Array("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre") 

updateClock(); 
function updateClock() { 
	var time = new Date(); 
	var hours = time.getHours(); 
	var minutes = time.getMinutes(); 
	var seconds = time.getSeconds(); 
	var date = '&nbsp;&nbsp; ' + time.getDate() + ' de ' + Months[time.getMonth()] + ' de ' + time.getFullYear();;

	timeClock= (hours < 10) ? hours : hours; 
	timeClock+= ((minutes < 10) ? ":0" : ":") + minutes; 
	timeClock+= ((seconds < 10) ? ":0" : ":") + seconds; 

	timeClock = date + ' - ' + timeClock
	reloj.innerHTML = timeClock + '&nbsp;&nbsp; '; 
	setTimeout("updateClock()",1000); 
} 
<!-- Fin Reloj -->
<!-- ************************************************************************************************************ -->
