function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("webmasterid", "My Background", "My Background",  null, null);
	menu.addItem("newsid", "Schools", "Schools",  "http://www.canpol.com/marta/School.htm", "http://www.canpol.com/marta/School.htm");
	menu.addItem("freedownloadid", "Interests", "interests",  null, null);
	menu.addItem("miscid", "Places", "Places",  null, null);
	menu.addItem("searchengineid", "Search Engines", "Search Engines",  null, null);

        menu.addSubItem("webmasterid", "My Background", "My Background",  "http://www.canpol.com/marta/Background.htm");
	menu.addSubItem("webmasterid", "Where I Lived", "Where I Lived",  "http://www.canpol.com/marta/europePoland.htm");
	menu.addSubItem("webmasterid", "My Pictures", "My Pictures",  "http://www.canpol.com/marta/schoolPics.htm");
	menu.addSubItem("webmasterid", "Poland", "Poland",  "http://poland.pl/");
	menu.addSubItem("webmasterid", "Gdansk", "Gdansk",  "http://www.gdansk.com/");
	menu.addSubItem("webmasterid", "Back to First Page", "Back to First Page",  "http://www.canpol.com/marta/");

	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", "My Interests", "My Interests",  "http://www.canpol.com/marta/Interests.htm");
	menu.addSubItem("freedownloadid", "Graphics", "Graphics",  "http://www.canpol.com/marta/Father.htm");
      menu.addSubItem("freedownloadid", "Paintings-Renoir", "Paintings-Renoir",  "http://www.canpol.com/impressionists/renoir.htm");
	

        menu.addSubItem("miscid", "Links to Gdansk", "Links to Gdansk",  "http://www.canpol.com/marta/Links.htm");
	menu.addSubItem("miscid", "Canpol Solutions", "Canpol Solutions",  "http://www.canpol.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.showMenu();
}