function akttime()
{
 window.setTimeout( "akttime()", 200 );
 a = new Date();
 b = a.getHours(); c = a.getMinutes(); d = a.getSeconds();
 if(b < 10){b = '0'+b;} 
 if(c < 10){c = '0'+c;} 
 if(d < 10){d = '0'+d;}
 zeit = b+':'+c+':'+d;
 if(document.getElementById("zeit")){document.getElementById("zeit").firstChild.data = "Time is always Now  "+zeit;}
}
akttime();

