function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("homeid", "Home", "Back To My Main Page", null, "index.html");
	menu.addItem("researchid", "Research", "Learn About Rare-Earth Ions",  null, "research.html");
	menu.addItem("vitaeid", "Vitae", "My C.V.", null, "vitae.html");
	menu.addItem("downloadid", "Downloads", "Documents and Programs", null, "download.html");
	menu.addItem("imageid", "Images", "My Photos", null, "images.html");
	menu.addItem("resourceid", "Resources", "Links To Web Resources", null, "resource.html");
	menu.addItem("quoteid", "Quotations", "My Favorite Quotes", null, "quotes.html");


	menu.addSubItem("researchid", "- Applications", "Applications For Rare-Earth Ions", "research.html#intro");
	menu.addSubItem("researchid", "- Rare-Earth Ions", "Properties Of Rare-Earth Ions", "research.html#intro2");
	menu.addSubItem("researchid", "- The Cone Group", "About The Cone Spectroscopy Group", "research.html#group");
	menu.addSubItem("researchid", "- My Research", "Overview Of My Research", "research.html#pshb");
	menu.addSubItem("researchid", "- 4f-4f Transitions", "My Research on 4f-4f Transitions", "research.html#4f4f");
	menu.addSubItem("researchid", "- 4f-5d Transitions", "My Research on 4f-5d Transitions", "research.html#4f5d");
	menu.addSubItem("researchid", "- Host Bands", "Locating 4f Relative To Host States", "research.html#host");
	menu.addSubItem("researchid", "- Documents", "Download Relevant Documents", "research.html#papers");

	
	menu.addSubItem("downloadid", "- My Documents", "My Physics Documents", "download.html#mydocs");
      	menu.addSubItem("downloadid", "- My Programs", "My Physics Programs", "download.html#programs");
	menu.addSubItem("downloadid", "- My Research", "My Physics Research", "research.html#papers");
      	menu.addSubItem("downloadid", "- Web Documents", "Documents On The Web", "download.html#webdocs");
	menu.addSubItem("downloadid", "- Web Freeware", "My Favorite Freeware", "download.html#freeware");

	
	menu.addSubItem("resourceid", "- Physics", "Links To Physics References", "resource.html#physics");
	menu.addSubItem("resourceid", "- Journals", "Online Journals", "resource.html#journal_search");
	menu.addSubItem("resourceid", "- Programming", "Programming Resources", "resource.html#programming");
	menu.addSubItem("resourceid", "- Equipment", "Links To Equipment Vendors", "resource.html#equipment_vendors");
	menu.addSubItem("resourceid", "- Home Pages", "Some Physics Web Pages", "resource.html#home_pages");
	menu.addSubItem("resourceid", "- Reference", "General Reference Information", "resource.html#reference");
	menu.addSubItem("resourceid", "- Download Sites", "Shareware And Freeware Sites", "resource.html#download_sites");
	menu.addSubItem("resourceid", "- Used Books", "Used And Out-Of-Print Books", "resource.html#books");
	menu.addSubItem("resourceid", "- Travel", "Ticketing And Travel Planning", "resource.html#travel");
	menu.addSubItem("resourceid", "- Shopping", "Price And Product Comparison", "resource.html#shopping");
	menu.addSubItem("resourceid", "- Poetry", "Poetry On The Web", "resource.html#poetry");
	menu.addSubItem("resourceid", "- Maps", "City and Topological Maps", "resource.html#maps");
	menu.addSubItem("resourceid", "- General", "Other Cool Web Sites", "resource.html#general");


	menu.showMenu();
}