function moveRelogio(){
    momentoAtual = new Date()
    hora = momentoAtual.getHours()
    minuto = momentoAtual.getMinutes()
    segundo = momentoAtual.getSeconds()
	
	 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 

    horaImprimivel = hora + " : " + minuto
 document.getElementById("Hora").innerHTML = horaImprimivel;

    setTimeout("moveRelogio()",1000)
}
