function DC_Start() 
{
	DC_Nu = new Date;
	DC_Indhold = showFilled(DC_Nu.getHours()) + ":" + showFilled(DC_Nu.getMinutes()) + ":" + showFilled(DC_Nu.getSeconds());
	document.getElementById("dc").innerHTML = DC_Indhold;
	setTimeout("DC_Start()",1000);
}
function showFilled(Value) 
{
	return (Value > 9) ? "" + Value : "0" + Value;
}

