function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("homeid", "Home", "Home", "hom.htm");
	menu.addItem("webmasterid", "Profile", "Profile", "profile.htm");
	menu.addItem("newsid", "Products", "Products", "prodindex.htm");
	menu.addItem("searchengineid", "Contact Us", "Contact Us", "enq.htm", target="_new");
	menu.addItem("miscid", "SBS united", "SBS united", "http://www.sbsunited.net");

	menu.showMenu();
}