<!-- Begin
// wochentage
var wochentag = new
Array("Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag");

// monatsnamen
var monat = new 
Array("Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember");

today = new Date()
modifiziert = new Date(document.lastModified)
tageher = (Math.ceil( (today.getTime()- modifiziert.getTime())/(24*60*60*1000) ) )-1

if(tageher == 1) {
wtag = " Tag"
} else {
wtag = " Tagen"
};
var then = new Date(document.lastModified);

if (then.getDate() == today.getDate() ){
schreib = " heute"} else {
schreib = " vor " + ( today.getDate() - then.getDate() ) +  wtag
};

function update() {
//document.writeln("Heute ist " + wochentag[today.getDay()] + ", der "+ today.getDate() + ". " + monat[today.getMonth()] + ", ");
document.writeln("<br>" + "Das letzte Update war am "+ wochentag[then.getDay()] + " " + then.getDate() + ". " + monat[then.getMonth()]);
// + ", also" + schreib + "!"
//document.writeln("Letztes Update: "+ wochentag[then.getDay()] + " " + then.getDate() + ". " + monat[then.getMonth()]  + ",  vor " + tageher +  wtag + "!")
return
}

//  End -->
