function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("companyprofileid", "Company Profile", "Company Profile",  null, null);
	menu.addItem("productid", "Our Product Range", "Our Product Range",  null, null);
	menu.addItem("contactinformationid", "Contact Information", "Contact Information",  null, null);
	menu.addItem("emailid", "Write to Us", "Write to Us",  null, null);
	menu.addItem("exitid", "Click Here to Exit", "Click Here to Exit",  null, null);

	menu.addSubItem("companyprofileid", "Company Profile", "Company Profile",  "about.html");
	

	menu.addSubItem("productid", "Sewing Machines", "Sewing Machines",  "sewing.html");
	menu.addSubItem("productid", "Fans", "Fans",  "fans.html");
	menu.addSubItem("productid", "Stabilizers", "Stabilizers",  "stabilizers.html");
	menu.addSubItem("productid", "Rectifiers", "Rectifiers",  "rectifiers.html");

	menu.addSubItem("contactinformationid", "Contact Information", "Contact Information",  "contact.html");
	

	menu.addSubItem("emailid", "Support Department", "For Support",  "mailto:support@poojamachines.com");
	menu.addSubItem("emailid", "Sales Department", "For Sales",  "mailto:pooja@jla.vsnl.net.in");

	menu.addSubItem("exitid", "Exit", "Click Here to Exit",  "exit.html");

	menu.showMenu();
}