function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, comment);

	menu = new Menu();
	menu.addItem("newsid", "News", "News",  "new.htm", null);
	menu.addItem("companyid", "Company", "Additional info about our company and how to become a member of it",  null, null);
	menu.addItem("serviceid", "Services", "Find out more about the services we offer and how to hire us",  null, null);
	menu.addItem("utfid", "Allies", "The other members of the United Trade Federation",  null, null);
	menu.addItem("contactid", "Contact Us", "Contact Us",  "contact.htm", null);
	menu.addItem("comlinkid", "ComLink", "GTS Message Board",  "http://pub66.ezboard.com/bgtscomlink", null);

	menu.addSubItem("companyid", "About GTS", "About GTS",  "index.htm", null);
	menu.addSubItem("companyid", "Members", "Members",  "members.htm", null);
	menu.addSubItem("companyid", "Join", "Join",  "join.htm", null);

	menu.addSubItem("serviceid", "Transportation", "Transportation",  "transport.htm", null);
	menu.addSubItem("serviceid", "Other Services", "Other Services",  "others.htm", null);

	menu.addSubItem("utfid", "Outrider Trading", "Outrider Trading", "http://OT.swcombine.com", "target='_blank'");
	menu.addSubItem("utfid", "Ferdinan Scouting Exploration", "Ferdinan Scouting Exploration", "http://FSE.swcombine.com", "target='_blank'")

	menu.showMenu();
}