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

	menu = new Menu();
	menu.addItem("item1id", "What is NFC", "", null, null);
	menu.addItem("item2id", "The two languages", "", null, null);
	menu.addItem("item3id", "NFC Model Overview", "",  null, null);
	menu.addItem("item4id", "Reach Fletcher Peacock", "To receive more information or explore the possibility of inviting the author into your organization or community",  null, null);



	menu.addSubItem("item1id", "Needs Focused Communication - p.2 to 5", "",  "nfc-english-02.html");

	menu.addSubItem("item2id", "The langage of the head and the heart - p.6 to 9", "",  "nfc-english-06.html");

	menu.addSubItem("item3id", "A 4-step process - p.10 to 12", "",  "nfc-english-10.html");

	menu.addSubItem("item4id", "On-line form", "",  "../english/english28.html");

	menu.showMenu();
}