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

	menu = new Menu();
	menu.addItem("webmasterid", "Original Site's Pages", "Original Site's Pages",  null, null);
	menu.addItem("miscid", "Miscellaneous", "Miscellaneous",  null, null);
	menu.addItem("searchengineid", "Search Engines", "Search Engines",  null, null);
	menu.addItem("newsid", "News Sites", "News Sites",  null, null);
	menu.addItem("freedownloadid", "Free Downloads", "Free Downloads",  null, null);
	
	

	menu.addSubItem("webmasterid", "Background Samples", "Background Samples",  "bgs1.htm");
	menu.addSubItem("webmasterid", "Special Effects", "Special Effects",  "dice.htm");
	menu.addSubItem("webmasterid", "Bars & Spacers", "Bars & Spacers",  "buttons.htm");
	menu.addSubItem("webmasterid", "Sample Layout 1", "Sample Layout 1",  "layout1.htm");
	menu.addSubItem("webmasterid", "Portfolio", "Portfolio",  "http://k-bproductions.com/portfolio.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", "GMA", "GMA",  "http://www.abcnews.go.com/Sections/GMA/");
	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", "Simply The Best", "Simply The Best",  "http://www.simplythebest.net/?page");
      menu.addSubItem("freedownloadid", "Website Abstraction", "Website Abstraction",  "http://www.wsabstract.com/cutpastejava.shtml");
	menu.addSubItem("freedownloadid", "Code Brain", "Code Brain",  "http://www.codebrain.com/javascript/index.html");
      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("searchengineid", "Google", "Google", "http://www.google.com");
	menu.addSubItem("searchengineid", "Ultimate Search", "Ultimate Search", "searchengines.htm");

	menu.addSubItem("miscid", "Calendar", "Calendar",  "http://k-bproductions.com/calendr.htm");
	menu.addSubItem("miscid", "My 1st Site", "My 1st Site","http://www.geocities.com/bjh2555/");
	menu.addSubItem("miscid", "TV Listings", "TV Listings", "http://tvguide.com/listings/");
	menu.addSubItem("miscid", "Links", "Links",  "http://www.k-bproductions.com/Links.htm");
	menu.addSubItem("miscid", "Kinda Dirty Jokes", "Kinda Dirty Jokes","http://www.k-bproductions.com/jokes.htm");
	menu.addSubItem("miscid", "Fun Stuff", "Fun Stuff", "http://k-bproductions.com/funstuff.htm");
	menu.addSubItem("miscid", "Send Greeting Card", "Send Greeting Card",  "http://k-bproductions.com/calendr.htm");
	menu.addSubItem("miscid", "Free-4-all Links", "Free-4-all Links", "http://k-bproductions.com/calendr.htm");

	menu.showMenu();
}