function GenNavigationHdr(str) {  hr = new Array("/index.html","/profile.html","/work.html","/favorite.html","/photo.html","/publications.html","/alexgseregin.html","/links.html");  names = new Array("Главная","О Себе","Работа","Увлечения","Фото", "Публикации","Об отце","Ссылки");  document.write("<div align=center>");  for (n=0; n<hr.length; n++) {    if (n>0) document.write(" | ");    if (str==names[n]) document.write("<b>"+names[n]+"</b>");    else     {      document.write("<a ");      if (hr[n].charAt(0)=="/") document.write("href=\"");      else document.write("target=\"_blank\" href=\"http://");      document.write(hr[n]+"\">"+names[n]+"</a>");    }  }document.write("</div>");}
