function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("webmasterid", "Homepage", "Homepage",  null, null);
	menu.addItem("newsid", "Security", "Security",  null, null);
	menu.addItem("freedownloadid", "Free Downloads", "Free Downloads",  null, null);
	menu.addItem("searchengineid", "Search Engines", "Search Engines",  null, null);
	menu.addItem("miscid", "CsD Index", "CsD Index",  null, null);
	menu.addItem("tutid", "Tips n Tricks", "Tips n Tricks", null, null);	

	menu.addSubItem("webmasterid", "Homepage", "Homepage",  "index.html");
	menu.addSubItem("webmasterid", "----", "----");

	menu.addSubItem("newsid", "Hert", "Hert", "http://www.hert.org/");
	menu.addSubItem("newsid", "Mountainwave", "Mountainwave", "http://www.mountainwave.com/");
	menu.addSubItem("newsid", "AusCert", "AusCert", "http://www.auscert.org.au/");
	menu.addSubItem("newsid", "Cnet", "Cnet",  "http://www.cnet.com/");
	menu.addSubItem("newsid", "Security Page", "Security Page", "Security.htm");
	menu.addSubItem("newsid", "News Page", "News Page", "News.htm");
	menu.addSubItem("newsid", "Antionline", "Antionline", "http://www.antionline.com/");
	menu.addSubItem("newsid", "----", "----");

	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("freedownloadid", "Downloads Page", "Downloads Page", "Downloads.htm");
	menu.addSubItem("freedownloadid", "----", "----");

	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", "Homepage", "Homepage", "index.html");
	menu.addSubItem("searchengineid", "Google.com", "Google.com", "http://www.google.com/");
	menu.addSubItem("searchengineid", "My Search Page", "My Search Page", "Search.htm");
	menu.addSubItem("searchengineid", "----", "----");

	menu.addSubItem("miscid", "Index Page", "Index Page",  "INDEX1.htm");
	menu.addSubItem("miscid", "Pictures", "Pictures", "NewZealand/New Zealand.htm");
	menu.addSubItem("miscid", "Links", "Links", "Links.htm");
	menu.addSubItem("miscid", "Mailing List", "Mailing List", "Comments.htm");
	menu.addSubItem("miscid", "Game", "Game", "Games.htm");
	menu.addSubItem("miscid", "Pictures of Me", "Pictures of Me", "Myself.htm");
	menu.addSubItem("miscid", "GuestBook", "GuestBook", "Guestbook.html");
	menu.addSubItem("miscid", "User Survey", "User Survey", "User Survey.htm");
	menu.addSubItem("miscid", "----", "----");

	menu.addSubItem("tutid", "JavaScript", "JavaScript", "JavaScriptHome.htm");
	menu.addSubItem("tutid", "Java", "Java", "Java/Java Home.htm");
	menu.addSubItem("tutid", "Hacking", "Hacking", "Pass.htm");
	menu.addSubItem("tutid", "Whois", "Whois", "Whois.htm");
	menu.addSubItem("tutid", "Icq Status", "Icq Status", "ICQ.htm");
	menu.addSubItem("tutid", "Browser Info", "Browser Info", "BrowserDetails.htm");
	menu.addSubItem("tutid", "Internet Tutorials", "Internet Tutorials", "Internet.html");
	menu.addSubItem("tutid", "DOS Tutorials", "DOS Tutorials", "DOS.html");
	menu.addSubItem("tutid", "----", "----");


	menu.showMenu();
}