<!-- Hide me from old browsers
document.writeln('<TABLE ALIGN="center" border="0" bgcolor="#808080" cellpadding="0" cellspacing="0">');
document.writeln('<tr>');
document.writeln('<td ALIGN="center">');
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
document.writeln('<font face="arial, serif" color="#000000" size="2">Страница обновлена '+theDate+' '+theMonth+' '+theYear+' года</font>');
document.writeln('</td>');
document.writeln('</tr>');
document.writeln('</table>');
// End Hiding-->








