<!--
// begin script
function time_data() 
{
 ltime= new Date()
 date = new Date();
 var day_of_week_number = date.getDay();
 var day_of_month = date.getDate();
 if (day_of_month < 10) {day_of_month = '0' + day_of_month}
 var month_number = date.getMonth();
 var year = date.getYear();
 var hours=ltime.getHours();
 var minutes=ltime.getMinutes();
 var seconds=ltime.getSeconds();
 if (eval(hours) <10) {hours='0' + hours}
 if (eval(minutes) < 10) {minutes='0' + minutes}
 if (seconds < 10) {seconds='0' + seconds}
 var ltime = hours+':'+minutes+':'+seconds
 var day_of_week = '';
 var month = ''
 if(month_number == 0){month = 'Januar';}
 if(month_number == 1){month = 'Februar';}
 if(month_number == 2){month = 'Marz';}
 if(month_number == 3){month = 'April';}
 if(month_number == 4){month = 'Mai';} 
 if(month_number == 5){month = 'Juni';}
 if(month_number == 6){month = 'Juli';}
 if(month_number == 7){month = 'August';}
 if(month_number == 8){month = 'September';}
 if(month_number == 9){month = 'Oktober';}
 if(month_number == 10){month = 'November';}
 if(month_number == 11){month ='Dezember';}
 if(day_of_week_number == 0){day_of_week = 'Sonntag';}
 if(day_of_week_number == 1){day_of_week = 'Montag';}
 if(day_of_week_number == 2){day_of_week = 'Dienstag';}
 if(day_of_week_number == 3){day_of_week = 'Milieu';}
 if(day_of_week_number == 4){day_of_week = 'Donnerstag';}
 if(day_of_week_number == 5){day_of_week = 'Freitag';}
 if(day_of_week_number == 6){day_of_week = 'Sonnabend';}
 var date_to_show = day_of_week  + ',&nbsp;&nbsp;' + year + ' '+ month + ' ' + day_of_month + '&nbsp;&nbsp;' + ltime + ' ';
/* var date_to_show =  day_of_month + ' ' + month + ' ' + year + ' ã.' + '<br>' + day_of_week  + ' ' + ltime; */
 if(document.all)  {hag.innerHTML=date_to_show}
 if(document.layers) {document.hag.document.write('<div id="hag">' + date_to_show + '</div>')
  document.close() }
 var timer = setTimeout("time_data()",1000)
}
// - End of JavaScript -
-->
