function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, frame);

	menu = new Menu();
	menu.addItem("My_Site", "General", "Sprott Networks Service Center",  null, null);
	menu.addItem("Science", "Science", "Science",  null, null);
	menu.addItem("Helpline", "Helpline", "Helpline",  null, null);
	menu.addItem("Projects", "Projects", "Projects",  null, null);
	menu.addItem("Links", "Links", "Links",  null, null);


	menu.addSubItem("My_Site", "HOME", "HOME",  "home.html");
	menu.addSubItem("My_Site", "Sitemap", "Sitemap",  "sorry.html");
	menu.addSubItem("My_Site", "Contact", "Contact",  "sorry.html");
	menu.addSubItem("My_Site", "Guestbook", "Guestbook",  "sorry.html");
	menu.addSubItem("My_Site", "Calendar", "Calendar",  "sorry.html");
	menu.addSubItem("My_Site", "Mailing List", "Mailing List",  "sorry.html");

	menu.addSubItem("Projects", "Ael2001", "AEL2001",  "http://www.ael2001.lu/");
	menu.addSubItem("Projects", "SCRIPT", "SCRIPT",  "http://www.script.lu/");
	menu.addSubItem("Projects", "Femmes.lu", "Femmes.lu",  "http://www.femmes.lu/");
	menu.addSubItem("Projects", "FTN", "Femmes Training Net",  "http://www.femmes.lu/ftn");
	menu.addSubItem("Projects", "OceanBook", "OceanBook",  "http://www.amcs.net/oceanbook");

	menu.addSubItem("Science", "OceanBook", "OceanBook",  "http://www.amcs.net/oceanbook");
	menu.addSubItem("Science", "El Nino", "El Nino",  "science/oceanographie/el_nino/");
	menu.addSubItem("Science", "Oceanographie", "propri&eacute;tes physiques",  "science/oceanographie/ocean/plan.htm");
	menu.addSubItem("Science", "Biology", "Biology",  "science/biologie/");
	menu.addSubItem("Science", "Physics", "Physics",  "science/physik/taschenbuch/");
	menu.addSubItem("Science", "Mathematics", "Mathematics",  "sorry.html");
	menu.addSubItem("Science", "Astronomy", "Astronomy",  "sorry.html");
	menu.addSubItem("Science", "Various", "Various",  "sorry.html");


	menu.addSubItem("Helpline", "Majordomo", "Majordomo",  "helpdesk/majordomo1.html");
	menu.addSubItem("Helpline", "CSS", "CSS",  "helpdesk/css1.html");
	menu.addSubItem("Helpline", "UNIX Commands", "UNIX Commands",  "helpdesk/unix1.html");
	menu.addSubItem("Helpline", "HTTP Commands", "HTTP Commands",  "helpdesk/http.html");
	menu.addSubItem("Helpline", "Linbot Help", "Linbot Help",  "helpdesk/linbothelp.html");
	menu.addSubItem("Helpline", "Searchtool", "Searchtool",  "helpdesk/suchen.html");
	menu.addSubItem("Helpline", "Colors", "Colors",  "helpdesk/color_trans.html");
	menu.addSubItem("Helpline", "HtDig", "HtDig",  "http://www.htdig.org");



	menu.showMenu();
}