function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("homeid", "Home", "Home",  null, null);
	menu.addItem("softwareid", "Application Software", "Application Software",  null, null);
	menu.addItem("servicesid", "Services", "Services",  null, null);
	menu.addItem("systemid", "System Integration", "System Integration",  null, null);
	menu.addItem("supportid", "Support", "Support",  null, null);
	menu.addItem("newsid", "News", "News",  "news.htm", null);
	menu.addItem("aboutusid", "Contact Us", "Contact Us", "ContactUs.htm", null);

	menu.addSubItem("homeid", "Site Map", "Site Map",  "sitemap.htm");

	menu.addSubItem("softwareid", "Microsoft Great Plains", "Microsoft Great Plains",  "GP.htm");
	menu.addSubItem("softwareid", "Crystal Decision Crystal Reports", " Crystal Decision Crystal Reports ",  "CR.htm");
	menu.addSubItem("softwareid", "FRx-Financial Reporting Engine", " FRx-Financial Reporting Engine ",  "FRx.htm");

	menu.addSubItem("servicesid", "Training", "Training",  "Training.htm");
	menu.addSubItem("servicesid", "Consulting", " Consulting",  "Consulting.htm");
      menu.addSubItem("servicesid", "Modification", " Modification",  "Modification.htm");
	menu.addSubItem("servicesid", "Crystal Reports", " Crystal Reports ",  "customreporting.htm");
      menu.addSubItem("servicesid", "Implementation Support", " Implementation Support ",  "Implementation.htm");
	menu.addSubItem("servicesid", "Data Conversion", "Data Conversion",  " DataConvert.htm");
	menu.addSubItem("servicesid", "Project Management", "Project Management",  "projectmgmt.htm");
	menu.addSubItem("servicesid", "ASP Solution", "ASP Solution",  " ASPhosting.htm");

	menu.addSubItem("systemid", "Citrix Products Family", "Citrix Products Family",  "Citrix.htm");
	menu.addSubItem("systemid", "Microsoft Products", "Microsoft Products",  " Microsoft.htm");
	menu.addSubItem("systemid", "Wireless", "Wireless", "wireless.htm");
	menu.addSubItem("systemid", "ZetaFax", "ZetaFax",  "ZetaFax.htm");

	menu.addSubItem("supportid", "Downloads", "Downloads",  " kb.htm");
//	menu.addSubItem("supportid", "Downloads", "Downloads",  "downloads.htm");

//	menu.addSubItem("newsid", "News", "News",  "news.htm");

//	menu.addSubItem("aboutusid", "Contact Us", "Contact Us",  //"ContactUs.htm");

	menu.showMenu();
}
