// JavaScript Document
Stamp = new Date();
year = Stamp.getYear();
if (year < 2000) year = 1900 + year;
document.write('<font size="1" face="Arial" ><B>Datum: ' +Stamp.getDate()+ "/"+ (Stamp.getMonth() + 1) +"/" + year + '</B></font>');
var Hours;
var Mins;
var Time;
Hours = Stamp.getHours();
Mins = Stamp.getMinutes();
if (Mins < 10) {
Mins = "0" + Mins;
}
document.write('<font size="1" face="Arial" ><B>  Zeit: ' + Hours + ":" + Mins + " "+"h" + '</B></font>');

