function Nazad(){
document.history.back();
}
function Vpered(){
document.history.forward();
}
function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

menu = new Menu();
menu.addItem("a", "На главную страничку","",null,"Main.htm");
menu.addItem("b", "Разное", "", null);
menu.addItem("c", "Виды пингвинов", "",  null);
menu.addItem("d", "География", "", null);
menu.addItem("e", "Анатомия", "", null);
menu.addItem("f", "Первооткрыватели", "", null);
menu.addItem("g", "История", "", null);
menu.addItem("h", "Поведение", "", null);

menu.addSubItem("b", "Гостевая книга","","addguest.html");
menu.addSubItem("b", "Термины", "",  "search.htm");
menu.addSubItem("b", "Фотогалерея", "",  "Photo.html");
menu.addSubItem("b", "О нас", "",  "aboutus.html");
menu.addSubItem("b", "Игры", "",  "game.html");
menu.addSubItem("b", "Литература", "",  "literature.html");

menu.addSubItem("c", "Длиннохвостые пингвины", "",  "Dlin.html");
menu.addSubItem("c", "Исполинские пингвины", "",  "Ispol.html");
menu.addSubItem("d", "На суше", "",  "Ground.html");
menu.addSubItem("d", "Антарктида", "",  "Antarktida.html");

menu.addSubItem("e", "Тело", "",  "body.html");
menu.addSubItem("e", "Вес и рост", "",  "w_h.html");

menu.addSubItem("f", "Беллинсгаузен", "",  "Bell.html");
menu.addSubItem("f", "Лазарев", "",  "Lazarev.html");

menu.addSubItem("g", "Откуда произошло слово 'пингвин'", "",  "Otkyda.html");

menu.addSubItem("h", "Плавание и ныряние", "",  "plavanie.html");
menu.addSubItem("h", "Поведение в брачном периоде", "",  "brak.html");
menu.addSubItem("h", "Опасности", "", "Dangerous.html");

menu.showMenu();
}