<!--
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]="Декабря";

var time=new Date();

var lmonth=months[time.getMonth() + 1];

var date=time.getDate();

var year=time.getYear();

if (year < 2000)    

year = year + 1900; 

document.write(date + " " + lmonth + " " + year)


