﻿function UR_Start() 
{
	UR_Nu = new Date;
//	UR_Indhold = showFilled(UR_Nu.getHours()) + ":" + showFilled(UR_Nu.getMinutes());
	//+ ":" + showFilled(UR_Nu.getSeconds());
	
NomeMes = new CriaArray(12)
NomeMes[0] = "Janeiro"
NomeMes[1] = "Fevereiro"
NomeMes[2] = "Março"
NomeMes[3] = "Abril"
NomeMes[4] = "Maio"
NomeMes[5] = "Junho"
NomeMes[6] = "Julho"
NomeMes[7] = "Agosto"
NomeMes[8] = "Setembro"
NomeMes[9] = "Outubro"
NomeMes[10] = "Novembro"
NomeMes[11] = "Dezembro"	
	
	
	UR_Indhold = (UR_Nu.getDate()) + " de " + NomeMes[(UR_Nu.getMonth())] + " de " +UR_Nu.getFullYear() + " " +showFilled(UR_Nu.getHours()) + ":" + showFilled(UR_Nu.getMinutes());
	
	document.getElementById("ur").innerHTML = UR_Indhold;
	setTimeout("UR_Start()",1000);
}
function showFilled(Value) 
{
	return (Value > 9) ? "" + Value : "0" + Value;
}

function CriaArray (n) {
this.length = n }
