function moveRelogio(){ 

   	momentoAtual = new Date() 

   	hora = momentoAtual.getHours() 

   	minuto = momentoAtual.getMinutes() 
	
   	segundo = momentoAtual.getSeconds() 
	
   	horaImprimivel = hora + " : " + minuto + " : " + segundo 
   	document.form_relogio.relogio.value = horaImprimivel 
   	setTimeout("moveRelogio()",1000) }
	

function ligar_<a href="http://compare.buscape.com.br/categoria?id=3694&lkout=1&site_origem=9882974">relogio</a>(){  

	UR_Nu = new Date;  

	UR_Indhold = showFilled(UR_Nu.getHours()) + ":" + showFilled(UR_Nu.getMinutes()) + ":" + showFilled(UR_Nu.getSeconds());  

	document.getElementById("relogio").innerHTML = UR_Indhold;  

	setTimeout("ligar_relogio()",1000);  

}  

function showFilled(Value){return (Value > 9) ? "" + Value : "0" + Value;}


function ligar_relogio(){  

UR_Nu = new Date;  

UR_Indhold = showFilled(UR_Nu.getHours()) + ":" + showFilled(UR_Nu.getMinutes()) + ":" + showFilled(UR_Nu.getSeconds());  

document.getElementById("relogio").innerHTML = UR_Indhold;  

setTimeout("ligar_relogio()",1000);  

}  

function showFilled(Value){return (Value > 9) ? "" + Value : "0" + Value;}  



