function makeArray(arraySize){this.length=arraySize; return this}mn=new makeArray(12)
mn[1]="01";mn[2]="02";mn[3]="03";mn[4]="04";mn[5]="05";mn[6]="06";mn[7]="07";mn[8]="08";mn[9]="09";mn[10]="10";mn[11]="11";mn[12]="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% height=10><tr><td><font size=1>');document.write('Документ изменён: '+theDate+'/'+theMonth+'/'+theYear);document.write('&nbsp;&nbsp;</font></td></tr></table>')
