function makeArray(arraySize){this.length=arraySize; return this}mn=new makeArray(12)
mn[1]="января";mn[2]="февраля";mn[3]="марта";mn[4]="апреля";mn[5]="мая";mn[6]="июня";mn[7]="июля";mn[8]="августа";mn[9]="сентября";mn[10]="октября";mn[11]="ноября";mn[12]="декабря";
updated=new Date(document.lastModified);theMonth=mn[updated.getMonth()+1];
theDate=updated.getDate();theYear=updated.getYear();theYear=theYear%100;
theYear=((theYear<50)?(2000+theYear):(1900+theYear));current_date=new Date(document.lastModified);document.write('<table border=0 cellPadding=0 cellSpacing=0 width=100%><tr><td height=10 valign=top align=right><font size=1>');document.write('Дата обновления: '+theDate+' '+theMonth+' '+theYear);document.write('&nbsp;&nbsp;</font></td></tr></table>')
