function navi(s_dir)
{
  document.write("<table width=100% height=240>");
  document.write("		    <tr height=10%>");
  document.write("			  <td><font size=3><a href="+s_dir+"last.html>Свежий номер</a></font></td>");
  document.write("			</tr>");
  document.write("			<tr height=10%>");
  document.write("			  <td><font size=3><a href="+s_dir+"arch.html>Архив номеров</a></font></td>");
  document.write("			</tr>");
  document.write("			<tr height=10%>");
  document.write("			  <td><font size=3><a href="+s_dir+"catalog.html>Каталог</a></font></td>");
  document.write("			</tr>");
  document.write("			<tr height=10%>");
  document.write("			  <td><font size=3><a href="+s_dir+"news.html>Новости, события</a></font></td>");
  document.write("			</tr>");
  document.write("			<tr height=10%>");
  document.write("			  <td><font size=3><a href="+s_dir+"anons.html>Анонс</a></font></td>");
  document.write("			</tr>");
  document.write("			<tr height=10%>");
  document.write("			  <td><font size=3><a href="+s_dir+"konkurs.html>Конкурс</a></font></td>");
  document.write("			</tr>");
  document.write("			<tr height=10%>");
  document.write("			  <td><font size=3><a href="+s_dir+"toauth.html>Авторам</a></font></td>");
  document.write("			</tr>");
  document.write("			<tr height=10%>");
  document.write("			  <td><font size=3><a href="+s_dir+"contacts.html>Контакты</a></font></td>");
  document.write("			</tr>");
  document.write("			<tr height=10%>");
  document.write("			  <td><font size=3><a href="+s_dir+"links.html>Ссылки</a></font></td>");
  document.write("			</tr>");
  document.write("			<tr height=10%>");
  document.write("			  <td><font size=3><a href="+s_dir+"gb/index.php>Гостевая</a></font></td>");
  document.write("			</tr>");
  document.write("        </table>");
}
 
function highlight() 
{ 
  if (null != event.fromElement)
    if (event.fromElement.tagName == "A")
      event.fromElement.className = "";
      if (null != event.toElement)
        if (event.toElement.tagName == "A")
          event.toElement.className = "over";
}