// JavaScript Document
function mueveReloj(){ 
    momentoActual = new Date()
    hora = momentoActual.getHours() 
    minuto = momentoActual.getMinutes() 
    segundo = momentoActual.getSeconds() 

	str_segundo = new String (segundo) 
    if (str_segundo.length == 1) 
       segundo = "0" + segundo 
    str_minuto = new String (minuto) 
    
	if (str_minuto.length == 1) 
       minuto = "0" + minuto 

    str_hora = new String (hora) 
    if (str_hora.length == 1) 
       hora = "0" + hora 

    horaImprimible = hora + "h " + minuto + "m " + segundo + "s "
	document.getElementById('reloj').value = horaImprimible 

    setTimeout("mueveReloj()",1000) 
}

