<!--
function clock() {

//ZEIT
  var now = new Date();
  var hours = now.getHours();
  var minutes = now.getMinutes();
  var seconds = now.getSeconds();

  if(hours<10){
    hours = "0"+hours;
  }
  if(minutes<10){
    minutes = "0"+minutes;
  }
  if(seconds<10){
    seconds = "0"+seconds;
  }

  var timeString = ""+hours+":"+minutes+":"+seconds;
  uhr.innerHTML = timeString;

//DATUM
  var weekdays = new Array('So','Mo','Di','Mi','Do','Fr','Sa');

  var day = now.getDate();
  var weekday = now.getDay();
  var month = now.getMonth()+1;
  var year = now.getYear();

  if(day<10){
    day = "0"+day;
  }
  if(month<10){
    month = "0"+month;
  }

  var timeString = ""+hours+":"+minutes+":"+seconds;
  uhr.innerHTML = timeString;

  var dateString = ""+weekdays[weekday]+", "+day+"."+month+"."+year;
  datum.innerHTML = dateString;

window.setTimeout("clock();", 1000);
}
// -->