function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("directoryid", "Directory of this Site", "Directory of this Site",  null, null);
	menu.addItem("freedownloadid", "Free Downloads", "Free Downloads",  null, null);
	menu.addItem("miscid", "Miscellaneous", "Miscellaneous",  null, null);
	menu.addItem("newsid", "News Sites", "News Sites",  null, null);
	menu.addItem("searchengineid", "Search Engines", "Search Engines",  null, null);
	menu.addItem("webmasterid", "Web Building Sites", "Web Building Sites",  null, null);
	
	menu.addSubItem("directoryid", "About Me", "About Me",  "aboutme.html");
	menu.addSubItem("directoryid", "Cisco Systems", "Cisco Systems",  "cisco.html");
	menu.addSubItem("directoryid", "DOS to UNIX", "DOS to UNIX",  "dos-unix.htm");
	menu.addSubItem("directoryid", "EIA/TIA 568 Standard", "EIA/TIA 568 Standard",  "eia-tia_568.htm");
	menu.addSubItem("directoryid", "Hardware Resources", "Hardware Resources",  "hardware.htm");
	menu.addSubItem("directoryid", "IEEE 802.3 Standard", "IEEE 802.3 Standard",  "ieee_802.3.htm");
	menu.addSubItem("directoryid", "Index Page", "Index Page",  "index.html");
	menu.addSubItem("directoryid", "Linux", "Linux",  "linux.htm");
	menu.addSubItem("directoryid", "Novell", "Novell",  "novell.htm");
	menu.addSubItem("directoryid", "OSI Model", "OSI Model",  "osi.htm");
	menu.addSubItem("directoryid", "Services", "Services", "services.xml");
	menu.addSubItem("directoryid", "Software Resourses", "Software Resourses",  "software.htm");
	menu.addSubItem("directoryid", "UNIX", "UNIX",  "unix.htm");
	menu.addSubItem("directoryid", "vi Editor Commands", "vi Editor Commands",  "vi.htm");
	menu.addSubItem("directoryid", "Windows NT/2000/XP", "Windows NT/2000/XP",  "winnt.htm");

	menu.addSubItem("webmasterid", "Developer.com", "Developer.com",  "http://www.developer.com/");
	menu.addSubItem("webmasterid", "Dynamic Drive", "Dynamic Drive",  "http://www.dynamicdrive.com/");
	menu.addSubItem("webmasterid", "Freewarejava.com", "Freewarejava.com",  "http://www.freewarejava.com/");
	menu.addSubItem("webmasterid", "Intro DHTML Guide", "Intro DHTML Guide",  "http://members.tripod.com/~toolmandavid");
	menu.addSubItem("webmasterid", "Jars", "Jars",  "http://www.jars.com/");
	menu.addSubItem("webmasterid", "Web Monkey", "Web Monkey",  "http://www.webmonkey.com/");
	menu.addSubItem("webmasterid", "Web Review", "Web Review",  "http://www.webreview.com/");
	menu.addSubItem("webmasterid", "Website Abstraction", "Website Abstraction",  "http://www.wsabstract.com/");
				
	menu.addSubItem("newsid", "ABC News", "ABC News",  "http://www.abcnews.com");
	menu.addSubItem("newsid", "CBS news", "CBS News",  "http://www.cbsnews.com");
	menu.addSubItem("newsid", "CNN", "CNN",  "http://www.cnn.com");
	menu.addSubItem("newsid", "MSNBC", "MSNBC",  "http://www.msnbc.com");
	menu.addSubItem("newsid", "News.com", "News.com",  "http://news.com");
	menu.addSubItem("newsid", "TechWeb", "TechWeb",  "http://www.techweb.com");
	menu.addSubItem("newsid", "Wired News", "Wired News",  "http://www.wired.com");
	
	menu.addSubItem("freedownloadid", "Download.com", "Download.com",  "http://download.com/");
	menu.addSubItem("freedownloadid", "Dynamic Drive", "Dynamic Drive",  "http://www.dynamicdrive.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", "AlltheWeb", "AlltheWeb",  "http://www.alltheweb.com/");
	menu.addSubItem("searchengineid", "Altavista", "Altavista",  "http://www.altavista.com/");
	menu.addSubItem("searchengineid", "Excite", "Excite", "http://www.excite.com");
	menu.addSubItem("searchengineid", "Google", "Google", "http://www.google.com");
	menu.addSubItem("searchengineid", "HotBot", "HotBot",  "http://www.hotbot.com");
	menu.addSubItem("searchengineid", "Infoseek", "Infoseek",  "http://www.infoseek.com/");
	menu.addSubItem("searchengineid", "Lycos", "Lycos",  "http://www.lycos.com/");
	menu.addSubItem("searchengineid", "Northern Light", "Northern Light",  "http://www.nothernlight.com/");
	menu.addSubItem("searchengineid", "WebCrawler", "WebCrawler",  "http://www.webcrawler.com/");
	menu.addSubItem("searchengineid", "Yahoo", "Yahoo",  "http://www.yahoo.com/");
	
	menu.addSubItem("miscid", "Andover.net", "Andover.net",  "http://www.andover.net/");
	menu.addSubItem("miscid", "Cnet", "Cnet",  "http://www.cnet.com/");
	menu.addSubItem("miscid", "Hitbox.com", "Hitbox.com",  "http://www.hitbox.com/");
	menu.addSubItem("miscid", "RealAudio", "RealAudio",  "http://www.realaudio.com/");
	menu.addSubItem("miscid", "MP3.com", "MP3.com",  "http://www.mp3.com/");

	menu.showMenu();
}
