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

	menu = new Menu();
	menu.addItem("homeID", "Home", "Ersasoft Home Page",  null, null);
	menu.addItem("productID", "Products", "Our Products",  null, null);
	menu.addItem("serviceID", "Services", "Our Services",  null, null);
	menu.addItem("searchengineid", "Search", "Search Engines",  null, null);
	menu.addItem("supportID", "Support", "Support",  null, null);

	menu.addSubItem("homeID", "Ersasoft", "Back to Ersasoft Home",  "Home.htm");

	menu.addSubItem("productID", "Downloads", "Downloads",  "FileTree/Tree_Frame.htm");

	//menu.addSubItem("serviceID", "Dynamic Drive", "Dynamic Drive",  "http://www.dynamicdrive.com/");
	//menu.addSubItem("serviceID", "Download.com", "Download.com",  "http://download.com/");
      	//menu.addSubItem("serviceID", "Jumbo", "Jumbo",  "http://www.jumbo.com/");
	//menu.addSubItem("serviceID", "Tucows", "Tucows",  "http://tucows.com/");
      	menu.addSubItem("serviceID", "Services", "Services we offer",  "Services.htm");

	menu.addSubItem("searchengineid", "Yahoo", "Yahoo",  "http://www.yahoo.com/");
	menu.addSubItem("searchengineid", "Infoseek", "Infoseek",  "http://www.infoseek.com/");
	menu.addSubItem("searchengineid", "Excite", "Excite", "http://www.excite.com/");
	menu.addSubItem("searchengineid", "HotBot", "HotBot",  "http://www.hotbot.com/");

	menu.addSubItem("supportID", "News", "News",  "News.htm");
	//menu.addSubItem("supportID", "Feedback", "Feedback",  "Feedback/Feedback.htm");

	menu.showMenu();
}
