function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("webmasterid", "WMU", "WMU",  null, null);
	menu.addItem("newsid", "Professional Bodies", "Professional Bodies",  null, null);
	menu.addItem("searchengineid", "Search Engines", "Search Engines",  null, null);
	menu.addItem("miscid", "Contact Me", "Contact Me",  null, null);

	menu.addSubItem("webmasterid", "WMU", "WMU",  "http://www.wmich.edu");

	menu.addSubItem("newsid", "ASME", "ASME",  "http://www.asme.org");
	menu.addSubItem("newsid", "ASSE", "ASSE",  "http://www.asse.org");
	menu.addSubItem("newsid", "SME", "SME",  "http://www.sme.org");

	menu.addSubItem("searchengineid", "Yahoo", "Yahoo",  "http://www.yahoo.com/");
	menu.addSubItem("searchengineid", "Google", "Google",  "http://www.google.com/");
	menu.addSubItem("searchengineid", "Excite", "Excite", "http://www.excite.com");

	menu.addSubItem("miscid", "Email", "alamgir.choudhury@wmich.edu", "alamgir.choudhury@wmich.edu");
	menu.addSubItem("miscid", "Phone", "269-387-6535",  "");
	menu.addSubItem("miscid", "Address", "Industrial and Manufacturing Engineering, Western Michigan University,2069 Kohrman Hall, Kalamazoo,MI-49006",  "");

	menu.showMenu();
}
