function CountDown()
{
	timeRemaining--;
	FormatTime();
}

function FormatTime()
{
	var restHours = timeRemaining % 86400;
	var days = (timeRemaining - restHours) / 86400;

	var restMinutes = restHours % 3600;
	var hours = (restHours - restMinutes) / 3600;

	var restSeconds = restMinutes % 60;
	var minutes = (restMinutes - restSeconds) / 60;

	var seconds = restSeconds;

	document.getElementById("days").innerHTML = days + " Tage";
	document.getElementById("time").innerHTML = hours + ":" + minutes + ":" + seconds;
}

function Disable(elementID, checked)
{
	document.forms["editForm"].elements[elementID].disabled = !checked;
}
