function datumInStatus()
{
	var datum=new Date();

	window.status=ddmmyyyhhmmss(datum);

}
window.setInterval("datumInStatus()",1000); 

function ddmmyyyhhmmss(date)
{
	//date > Datum
	var returntxt="";
	returntxt +=	xx(date.getDate())+
					"."+
					xx(date.getMonth()+1)+
					"."+
					date.getFullYear()+
					"."+
					xx(date.getHours())+
					":"+
					xx(date.getMinutes())+
					":"+
					xx(date.getSeconds());
	
	return returntxt;
}



function xx(zahl)
{
	var rettxt="";
	if(zahl<10)
		return rettxt+"0"+zahl;
	else
		return rettxt+zahl;
}  