
var months=new Array(13);
months[1]="Января";
months[2]="Февраля";
months[3]="Марта";
months[4]="Aпреля";
months[5]="Maя";
months[6]="Июня";
months[7]="Июля";
months[8]="Aвгуста";
months[9]="Сентября";
months[10]="Oктября";
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)    // Y2K Fix, Isaac Powell
year = year + 1900; // http://onyx.idbsu.edu/~ipowell
document.write("<right>" + date + "&nbsp;");
document.write(lmonth + "&nbsp;" + year + "&nbsp;г.</right>");











