function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("urbanseaid", "-=urbansea=-", "-=urbansea=-", null, null);
	menu.addItem("sitesid", "Main Index", "Main Index Sites", null, null);
	menu.addItem("informationid", "General", "General", null, null);

	menu.addSubItem("urbanseaid", "Urbansea Home", "Urbansea Home",  "mastermain.html");
	menu.addSubItem("urbanseaid", "Copyright", "Copyright and Disclaimer",  "general/copyright.html");
	menu.addSubItem("urbanseaid", "Feedback", "Send your feedback",  "feedback/feedbackmain.html");
	menu.addSubItem("urbanseaid", "Contact", "Contact the webmaster", "general/contact.html");
	menu.addSubItem("urbanseaid", "Acknowledgements", "Thanks to contributors",  "general/thanks.html");

	menu.addSubItem("sitesid", "Ormiston", "Ormiston", "ormiston/mastermain.html");
	menu.addSubItem("sitesid", "Pencaitland", "Pencaitland", "pencaitland/mastermain.html");
	menu.addSubItem("sitesid", "Musselburgh", "Musselburgh", "musselburgh/mastermain.html");
	menu.addSubItem("sitesid", "Cuthill Surname", "Cuthill Surname", "cuthill/mastermain.html");

	menu.addSubItem("informationid", "What's New?", "What's New?",  "general/whatsnew.html");
	menu.addSubItem("informationid", "Wanted!", "Wanted!",  "general/wanted.html");

	menu.showMenu();
}