<!-- Hide me from old browsers
var months = new Array
        (
         "января"
        ,"февраля"
        ,"марта"
        ,"апреля"
        ,"мая"
        ,"июня"
        ,"июля"
        ,"августа"
        ,"сентября"
        ,"октября"
        ,"ноября"
        ,"декабря"
        );
update=new Date(document.lastModified);
theMonth =months[update.getMonth()];
theDate = update.getDate();
theYear = update.getYear();
if (theYear > 99 && theYear < 200)
  theYear += 1900;
else if (theYear < 100)
  theYear += 2000;
//if

function Update(backCol,textCol)
{
  var st;
  var sx;
  st='<TABLE ALIGN=\"center\" border=\"0\" bgcolor=\"';
  st+=(backCol)?backCol:'#808080';
  st+='\" cellpadding=\"0\" cellspacing=\"0\">';
  this.document.writeln(st);
  this.document.writeln('<tr>');
  sx='<font face=\"arial, serif\" color=\"';
  sx+=(textCol)?textCol:'#FFFF00';
  sx+='\" size=\"1\">';
  this.document.writeln('<td ALIGN=\"center\">'+sx+'Страница обновлена '+theDate+' '+theMonth+' '+theYear+' года</font></td>');
  this.document.writeln('</tr>');
  this.document.writeln('</table>');
}
// End Hiding-->











