
function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("indexid", "Home", "Home",  null, null);
	menu.addItem("participantsid", "Participants", "Participants",  null, null);
	menu.addItem("linkid", "Links", "Links",  null, null);
	menu.addItem("contactid", "Contact Us", "Contact Us",  null, null);
	menu.addItem("researcherid", "Researchers' Area", "Researchers' Area",  "rws/login.cfm");


	menu.addSubItem("indexid", "InterPARES 1", "InterPARES 1",  "ip1//ip3_index.cfm");
	menu.addSubItem("indexid", "InterPARES 2", "InterPARES 2",  "ip2/ip2_index.cfm");
	menu.addSubItem("indexid", "InterPARES 3", "InterPARES 3",  "ip3/ip3_index.cfm");
	
	menu.addSubItem("participantsid", "InterPARES 2 Participants", "InterPARES 2 Participants",  "ip2_participants.cfm");

	menu.addSubItem("linkid", "Websites", "Websites",  "ip2_websites.cfm");

	menu.addSubItem("contactid", "Project Contact Information", "Project Contact Information",  "ip2_contact.cfm");

	menu.showMenu();
}
