function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("webmasterid", "Profile", "Profile",  null, null);
	menu.addItem("newsid", "Product", "Product",  null, null);
	menu.addItem("freedownloadid", "Client", "Client",  null, null);
	menu.addItem("searchengineid", "Contact Us", "Contact Us",  null, null);
	menu.addItem("miscid", "Feedback", "Feedback",  null, null);

	menu.addSubItem("webmasterid", "About Us", "About Us",  "profile.html");

	menu.addSubItem("newsid", "Mechanical/Production/Automobile", "Electronics/Instrumentation/Electrical",  "list_mech.html");
	menu.addSubItem("newsid", "Chemical Engineering", "Chemical Engineering",  "list_chem.html");
	menu.addSubItem("newsid", "Electronics/Instrumentation/Electrical", "Electronics/Instrumentation/Electrical",  "elec_list.html");
	menu.addSubItem("newsid", "Civil Engineering", "Civil Engineering",  "list_civil.html");

	menu.addSubItem("freedownloadid", "Client", "Client",  "client.html");

	menu.addSubItem("searchengineid", "Contact Us", "Contact Us",  "contact.html");

	menu.addSubItem("miscid", "Enquiry", "Enquiry",  "enquiryform.html");

	menu.showMenu();
}