function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("inleidingid", "Inleiding", "",  "frame1.html", null);
	menu.addItem("wandelenid", "Overzicht per provincie", "",  "frameoverzichtprov.html", null);
	menu.addItem("highlightsid", "Highlights", "",  "frame3.html", null);
	menu.addItem("nieuwid", "Nieuw in deze website", "",  "framenieuw.html", null);
	menu.addItem("nieuwsbriefid", "Nieuwsbrief", "",  "frameemail.html", null);
	menu.addItem("linksid", "Links", "",  "frameinterlinks.html", null);
	menu.addItem("contactid", "Contact", "",  "frame4.html", null);

	menu.showMenu();
}