function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("webmasterid", "Home", "Even supports alt tags",  null, null);
	menu.addItem("newsid", "Services", "Even supports alt tags",  null, null);
	menu.addItem("freedownloadid", "About TAB", "Even supports alt tags",  null, null);
	menu.addItem("searchengineid", "Contact Us", "Even supports alt tags",  null, null);
	

	menu.addSubItem("webmasterid", "Home Page", "",  "http://www.tabsecurity.com/");

	menu.addSubItem("newsid", "Services", "", "http://www.tabsecurity.com/services.htm");
	menu.addSubItem("newsid", "Additional Benifits", "",  "http://www.tabsecurity.com/additionalbenifits.htm");
	menu.addSubItem("newsid", "Key Holding", "",  "http://www.tabsecurity.com/keyholding.htm");
	menu.addSubItem("newsid", "Travellers", "",  "http://www.tabsecurity.com/travellers.htm");
	menu.addSubItem("newsid", "SPARE", "",  "http://www.tabsecurity.com/????.html");
	

	menu.addSubItem("freedownloadid", "Company Infomation", "",  "http://www.tabsecurity.com/company.htm");
	menu.addSubItem("freedownloadid", "Spare", "",  "http://www.www.tabsecurity.com/");
     
	menu.addSubItem("searchengineid", "Enqiry Form", "",  "http://www.tabsecurity.com/enquiry.htm");
	menu.addSubItem("searchengineid", "Accounts", "",  "Mailto:accounts@tabsecurity.com/");
	menu.addSubItem("searchengineid", "Andrew@TAB", "", "Mailto:andrew@tabsecurity.com");
	menu.addSubItem("searchengineid", "Admin", "", "Mailto:admin@tabsecurity.com");
	menu.addSubItem("searchengineid", "Web Master", "",  "Mailto:web@tabsecurity.com");

	
	menu.showMenu();
}