function getTime() {
now = new Date();
y2k = new Date("Feb 19 2012 13:11:11");
days = (y2k - now) / 1000 / 60 / 60 / 24;
TageRound = Math.floor(days);
hours = (y2k - now) / 1000 / 60 / 60 - (24 * TageRound);
StdRound = Math.floor(hours);
minutes = (y2k - now) / 1000 /60 - (24 * 60 * TageRound) - (60 * StdRound);
MinRound = Math.floor(minutes);
seconds = (y2k - now) / 1000 - (24 * 60 * 60 * TageRound) - (60 * 60 * StdRound) - (60 * MinRound);
secRound = Math.round(seconds);
sec = (secRound == 1) ? " sec" : " sec";
min = (MinRound == 1) ? " min" : " min, ";
hr = (StdRound == 1) ? " Std" : " Std, ";
dy = (TageRound == 1)  ? " Tag" : " Tage, "
document.timeForm.input1.value = "Countdown für unsere Wagenbauer! Noch " + TageRound  + dy + StdRound + hr + MinRound + min + secRound + sec + " bis zum Zoch!!";
newtime = window.setTimeout("getTime();", 1000);
}
