var months=new Array(13)
months[1]="января"
months[2]="февраля"
months[3]="марта"
months[4]="апреля"
months[5]="мая"
months[6]="июня"
months[7]="июля"
months[8]="августа"
months[9]="сентября"
months[10]="октября"
months[11]="ноября"
months[12]="декабря"

time=new Date()
month=months[time.getMonth() + 1]
date=time.getDate()
year=time.getYear()
hours=time.getHours()
minutes=time.getMinutes()
if (eval(hours) <10) {hours="0"+hours}
if (eval(minutes) < 10) {minutes="0"+minutes}
if (year < 2000)
year=year+1900
document.write(date+" "+month+" "+year+", "+hours+":"+minutes+" - сегодня<BR>")

date=new Date(document.lastModified)
day=date.getDate()
month=months[date.getMonth() + 1]
year=date.getYear()
hours=date.getHours()
minutes=date.getMinutes()
if (eval(hours) <10) {hours="0"+hours}
if (eval(minutes) < 10) {minutes="0"+minutes}
if (year < 2000)
year=year+1900
document.write (day+" "+month+" "+year+", "+hours+":"+minutes+" - последнее изменение")

