var Wochentag = new Array("Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag");
function UR_Start()
{
	UR_Nu = new Date;
	UR_Indhold = showFilled(UR_Nu.getHours()) + ":" + showFilled(UR_Nu.getMinutes()) + ":" + showFilled(UR_Nu.getSeconds()) + " Uhr";
         tagr_Indhold = Wochentag[UR_Nu.getDay()] +", "+ showFilled(UR_Nu.getDate()) + "." + showFilled(UR_Nu.getMonth()+1) + "." + UR_Nu.getFullYear();
         document.getElementById("tagr").innerHTML = tagr_Indhold;
	document.getElementById("ur").innerHTML = UR_Indhold;
	setTimeout("UR_Start()",1000);
}
function showFilled(Value)
{
	return (Value > 9) ? "" + Value : "0" + Value;
}
