<!-- Begin
 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<100) year="19" + time.getYear();
 else year=time.getYear();
 document.write("<P ALIGN=RIGHT>" + date + " ");
 document.write(lmonth + " " + year + "&nbsp;");
 // End -->
