function setTime(){
    var d = new Date();
    a = new Date();
    b = a.getHours();
    c = a.getMinutes();
    d = a.getSeconds();
    if(b < 9) b = "0"+b;
    if(c < 9) c = "0"+c;
    if(d < 9) d = "0"+d;
    zeit = b+':'+c+':'+d;
    document.getElementById('acttime').innerHTML = (zeit);
    setTimeout("setTime();", 1000);
}
