{
lastModDate = new Date(document.lastModified);
lastModMonth = lastModDate.getMonth() + 1
lastModDay = lastModDate.getDate()
lastModYear = lastModDate.getYear()
if (lastModYear < 2000) { lastModYear = lastModYear + 1900; }
document.write(lastModDay + "." + lastModMonth + "." + lastModYear)
}