function anzeigen()
{
	var datum = new Date();
	stunden = datum.getHours();
	minuten = datum.getMinutes();
	sek = datum.getSeconds();
	sek_anz= sek;
	if (sek < 10) 
	{
		sek_anz = "0"+sek;
	}
	window.status="It's time come...   "+stunden+":"+minuten+":"+sek_anz;
	anz();
}

function anz()
{
	setTimeout('anzeigen()',100);
}


function init()
{
     anz();
}

function init_start() 
{
      anz();
      var filmfenster = open("start.html","film","scrollbars=0, dependent=0, fullscreen=0, resizable=no, toolbar=no, status=no, menubar=no, location=no, directories=no");
}
