function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("filmid", "Films", "Films",  null, null);
	menu.addItem("projid", "Current Projects", "Current Projects",  null, null);
	menu.addItem("listid", "Distribution List", "Distribution List",  null, null);
	menu.addItem("newsid", "Articles", "Articles",  null, null);
	menu.addItem("Interviewid", "Interviews", "Interviews",  null, null);
	menu.addItem("letterid", "Letters", "Letters",  null, null);
	menu.addItem("bookid", "Book", "Book",  null, null);
	
	menu.addSubItem("filmid", "On the Old Roman Road", "On the Old Roman Road",  "../../films/ORR.html");
	menu.addSubItem("filmid", "Musicians", "Musicians",  "../../films/mus.html");
	menu.addSubItem("filmid", "Avetik", "Avetik",  "../../films/avetik.html");
	menu.addSubItem("filmid", "Komitas", "Komitas",  "../../films/komitas.html");
	menu.addSubItem("filmid", "The Bear", "The bear",  "../../films/bear.html");
	menu.addSubItem("filmid", "Paradjanov", "Paradjanov",  "../../films/parajanov.html");
	menu.addSubItem("filmid", "Nagorno Karabakh", "Nagorno Karabakh",  "../../films/nk.html");
	

	menu.addSubItem("projid", "San-Lazzaro", "San-Lazzaro",  "../../proj/s-l.html");
	menu.addSubItem("projid", "The Confession", "The Confession",  "../../proj/conf.html");
	menu.addSubItem("projid", "The Mine", "The Mine",  "../../proj/mine.html");
	menu.addSubItem("projid", "Noraduz", "Noraduz",  "../../proj/noraduz.html");
	menu.addSubItem("projid", "Ararat", "Ararat",  "../../PRESSRELEASE 27.01.2002.html");

	menu.addSubItem("listid", "The Color of Pomegranates", "The Color of Pomegranates",  "../../dlist/granat.html");
	menu.addSubItem("listid", "The Damned", "The Damned",  "../../dlist/deamned.html");
	menu.addSubItem("listid", "And Everything is Repeating", "And Everything is Repeating",  "../dlist/repeating.html");

	menu.addSubItem("newsid", "...ENGLISH ARTICLES...", "articles in english ",  "../asbarez.html");
	menu.addSubItem("newsid", "...GERMAN ARTICLES...", "atricles in german",  "../german/TIP.html");
	menu.addSubItem("newsid", "...DUTCH ARTICLES...", "articles in dutch", "../dutch/avetik.html");
	menu.addSubItem("newsid", "...ITALIAN ARTICLES...", "articles in italian", "../italian/Corriera_Della.html");
	menu.addSubItem("newsid", "...ARMENIAN ARTICLES...", "articles in armenian", "90_04_13_GT.html");
	menu.addSubItem("newsid", "...SWEDISH ARTICLES...", "articles in swedish", "../swedish/DAGEN NYHETER_89.html");


	menu.addSubItem("Interviewid", "...DUTCH INTERVIEWS...", "Interviews in duth", "../../interview/avetik.html");
	menu.addSubItem("Interviewid", "...GERMAN INTERVIEWS...", "Interviews in german", "../../interview/german/F&F 93.html");
	menu.addSubItem("Interviewid", "...ARMENIAN INTERVIEWS...", "Interviews in armenian", "../../interview/armenian/96_04_13_EY.html");
	menu.addSubItem("Interviewid", "...ITALIAN INTERVIEWS...", "Interviews in italian", "../../interview/italian/komitas.html");
	menu.addSubItem("Interviewid", "...ENGLISH INTERVIEWS...", "Interviews in english", "../../interview/english/en_int.html");

	menu.addSubItem("letterid", "...ENGLISH LETTERS...", "Letters in english", "../../letter/letter_1.html");
	menu.addSubItem("letterid", "...GERMAN LETTERS...", "Letters in german", "../../letter/german/letter_G_Joachim.html");


	menu.addSubItem("bookid", "...BOOK...", "Book", "../../book1/index book.html");

menu.showMenu();
}