var LastModDate = new Date(document.lastModified);
year = LastModDate.getYear();
if (year < 1900) year += 1900;
document.write (LastModDate.getDate(),".");
document.write (LastModDate.getMonth()+1,".");
document.write (year);
