datum = document.lastModified
day=datum.slice(3,5);
month=datum.slice(0,2);
year=datum.slice(6,10);
datum="Letzte Änderung am " + day + ". " + month + ". " + year;
