// JavaScript Document
function Relogio(){
	Agora = new Date()
	H = Agora.getHours()
	M = Agora.getMinutes()
	S = Agora.getSeconds()

	strS = new String (S)
	if (strS.length == 1)
		 S = "0"+S

	strM = new String (M)
	if (strM.length == 1)
		 M = "0"+M

	strH = new String (H)
	if (strH.length == 1)
		 H = "0"+H

  HMS = H+":"+M+":"+S

	document.getElementById("Relogio").innerHTML = HMS
	//document.form_relogio.relogio.value = HMS

	setTimeout("Relogio()",1000)
}
