keine panik, immer mich fragen, kann dir auch meine mail geben
=)
<html>
<head>
<title>Count Down</title>
<script type="text/javascript">
function time_counter()
{
hours = 6;
secs = 0;
var initVal = hours * 60 + secs;
var time = new Date();
seconds = time.getSeconds();
secs_fin = (initVal-seconds)%60;
hours_fin = Math.floor((initVal-seconds)/60);
document.Anzeige.Zeit.value = hours_fin+":"+secs_fin;
window.setTimeout('time_counter()',1);
}
</script>
</head>
<body bgcolor="#400040" text="#FFFFFF" onLoad="time_counter();">
<form name="Anzeige" action="">
<input size="9" name="Zeit" value="06:00">
</form>
</body>
</html>