function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("SubMenu1id", "ALABAMA SEARCH", "ALABAMA SEARCH",  null, null);
	menu.addItem("SubMenu2id", "NEWS SEARCH", "NEWS SEARCH",  null, null);
	menu.addItem("SubMenu3id", "WEB SEARCH", "WEB SEARCH",  null, null);
	
	menu.addSubItem("SubMenu1id", "USGENWEB Map", "USGENWEB Map", "http://www.usgenweb.com/statelinks.html");
	menu.addSubItem("SubMenu1id", "ALGENWEB", "ALGENWEB",  "http://www.rootsweb.com/~algenweb/index.html");
	menu.addSubItem("SubMenu1id", "ALABAMA ARCHIVES","ALABAMA ARCHIVES", "http://www.rootsweb.com/~usgenweb/al/alfiles.htm");
	
	menu.addSubItem("SubMenu2id", "CNN", "CNN",  "http://www.cnn.com");
	menu.addSubItem("SubMenu2id", "ABCNews", "ABCNews",  "http://www.abcnews.com");
	
	menu.addSubItem("SubMenu3id", "Yahoo", "Yahoo",  "http://www.yahoo.com/");
	menu.addSubItem("SubMenu3id", "Infoseek", "Infoseek",  "http://www.infoseek.com/");
	menu.addSubItem("SubMenu3id", "Excite", "Excite", "http://www.excite.com");
	menu.addSubItem("SubMenu3id", "HotBot", "HotBot",  "http://www.hotbot.com");

	menu.showMenu();
}

