function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("player", "Free Players", "Free Players",  null, null);
	menu.addItem("go", "African Links", "African Links",  null, null);
        menu.addItem("newsid", "News / Weather", "News / Weather",  null, null);
	menu.addItem("downloadid", "Downloads", "Downloads",  null, null);
	menu.addItem("searchengineid", "Search Engines", "Search Engines",  null, null);
	menu.addItem("miscid", "Misc", "Misc",  null, null);

	menu.addSubItem("player", "RealAudio", "RealAudio",  "http://www.realaudio.com/");
	menu.addSubItem("player", "MP3.com", "MP3.com",  "http://www.mp3.com/");
	menu.addSubItem("player", "Media Player", "Media Player", "http://www.microsoft.com/windows/mediaplayer/en/download/");
	menu.addSubItem("player", "IQ 3D", "IQ 3D", "https://www.qsound.com/secure/purchase.asp?aid=10105&pid=4881");
        menu.addSubItem("player", "Audioactive", "Audioactive", "http://www.audioactive.com/");
        menu.addSubItem("player", "Streamworks", "Streamworks", "http://www.xingtech.com/support/downloads/swplayer/");
        menu.addSubItem("player", "Winamp", "Winamp", "http://www.winamp.com/");
        menu.addSubItem("player", "Radio Destiny", "Radio Destiny", "http://www.radiodestiny.com/");

        menu.addSubItem("go", "Africa.com", "Africa.com",  "http://africa.com/");
        menu.addSubItem("go", "CNN-Africa", "CNN-Africa",  "http://www.cnn.com/WORLD/africa/");
	menu.addSubItem("go", "Weather", "Weather", "http://www.weatherlabs.com/cgi-java/WL_WLServer?templatename=templates/index_world.html&w=africa&mode=E");
	menu.addSubItem("newsid", "MSNBC", "MSNBC",  "http://www.msnbc.com");
	menu.addSubItem("newsid", "CBS news", "CBS News",  "http://www.cbsnews.com");
        menu.addSubItem("newsid", "CNN", "CNN",  "http://www.cnn.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("downloadid", "Jumbo", "Jumbo",  "http://www.jumbo.com/");
	menu.addSubItem("downloadid", "Tucows", "Tucows",  "http://tucows.com/");
        menu.addSubItem("downloadid", "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", "Protect your Phone", "Protect your Phone",          "http://www.moonglowww.com/");
	menu.addSubItem("miscid", "Cnet", "Cnet",  "http://www.cnet.com/");
	menu.addSubItem("miscid", "Andover.net", "Andover.net",  "http://www.andover.net/");
	

	menu.showMenu();
}