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

	menu = new Menu();
	menu.addItem("webmasterid", "Links Page", "Links Page", null, null);
	menu.addItem("newsid", "Stories & News", "Stories",  null, null);
	menu.addItem("freedownloadid", "Back Ground Info & Free Downloads", "Back ground Info",  null, null);
	menu.addItem("searchengineid", "Old Tips & Tricks - Searchengines", "Old Tips & Tricks",  null, null);
	menu.addItem("miscid", "Miscellaneous", "Miscellaneous",  null, null);

	menu.addSubItem("webmasterid", "Main Entry Page.", "Main Entry Page.",  "../index.html");
	menu.addSubItem("webmasterid", "Links Page", "Links Page",  "../links page.htm");
	menu.addSubItem("webmasterid", "Products Page", "Products Page.",  "../company_products.html");
	menu.addSubItem("webmasterid", "Stories Page", "Various Stories Page",  "../Story Page.htm");
	menu.addSubItem("webmasterid", "Gallery of in-game Pictures", "Gallery of in-game Pictures",  "../Various Images/thumbnails/index.htm");

	menu.addSubItem("newsid", "CNN", "CNN",  "http://www.cnn.com");
	menu.addSubItem("newsid", "ABC News", "ABC News",  "http://www.abcnews.com");
	menu.addSubItem("newsid", "MSNBC", "MSNBC",  "http://www.msnbc.com");
	menu.addSubItem("newsid", "CBS news", "CBS News",  "http://www.cbsnews.com");
	menu.addSubItem("newsid", "News.com", "News.com",  "http://news.com");
	menu.addSubItem("newsid", "Wired News", "Wired News",  "http://www.wired.com");
	menu.addSubItem("newsid", "TechWeb", "TechWeb",  "http://www.techweb.com");

	menu.addSubItem("freedownloadid", "Dynamic Drive", "Dynamic Drive",  "http://www.dynamicdrive.com/");
	menu.addSubItem("freedownloadid", "Download.com", "Download.com",  "http://download.com/");
      menu.addSubItem("freedownloadid", "Jumbo", "Jumbo",  "http://www.jumbo.com/");
	menu.addSubItem("freedownloadid", "Tucows", "Tucows",  "http://tucows.com/");
      menu.addSubItem("freedownloadid", "WinFiles.com", "WinFiles.com",  "http://winfiles.com/");

	menu.addSubItem("searchengineid", "Yahoo", "Yahoo",  "http://www.yahoo.com/");
	menu.addSubItem("searchengineid", "Infoseek", "Infoseek",  "http://www.infoseek.com/");
	menu.addSubItem("searchengineid", "Excite", "Excite", "http://www.excite.com");
	menu.addSubItem("searchengineid", "HotBot", "HotBot",  "http://www.hotbot.com");

	menu.addSubItem("miscid", "Hitbox.com", "Hitbox.com",  "http://www.hitbox.com/");
	menu.addSubItem("miscid", "Cnet", "Cnet",  "http://www.cnet.com/");
	menu.addSubItem("miscid", "Andover.net", "Andover.net",  "http://www.andover.net/");
	menu.addSubItem("miscid", "RealAudio", "RealAudio",  "http://www.realaudio.com/");
	menu.addSubItem("miscid", "MP3.com", "MP3.com",  "http://www.mp3.com/");

	menu.showMenu();
}