function showToolbar()
{
	menu = new Menu();
///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "SmartSubMenu";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.mainMenuWidth = null;

	menu.newMenu(mstyle);
	menu.addItem("SmartSubMenu", "Searchs", 1, "Internet Search Engines", "Internet Search Engines",  "http://www.somewhere.com/", null, "Info", 1);
	menu.addItem("SmartSubMenu", "Searchs2", 1, "Search Engines 2", "Internet Search Engines",  "http://www.somewhere.com/", null, null, 0);
	menu.addSeparator("SmartSubMenu");
	menu.addItem("SmartSubMenu", "Searchs3", 1, "Search Engines 3", "Internet Search Engines",  "http://www.somewhere.com/", null, null, 0);
	menu.addItem("SmartSubMenu", "Searchs4", 1, "Search Engines 4", "Internet Search Engines",  "http://www.somewhere.com/", null, "SmartSubMenu2", 1);

///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "Info";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.cellSpacing = 3;
	mstyle.mainMenuWidth = null;

	menu.newMenu(mstyle);
	menu.addCustomItem("Info", "Logo", "Add GIFs <img src=\"http://www.esolutiononline.com/library/images/rthand.gif\">");

///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "SmartSubMenu2";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.cellSpacing = 3;
	mstyle.mainMenuWidth = null;

	menu.newMenu(mstyle);
	menu.addItem("SmartSubMenu2", "Searchss", 2, "Internet Search Engines", "Internet Search Engines",  "http://www.somewhere.com/", null, null, 0);
	menu.addItem("SmartSubMenu2", "Searchss2", 2, "Internet Search Engines", "Internet Search Engines",  "http://www.somewhere.com/", null, null, 0);
	menu.addItem("SmartSubMenu2", "Searchss3", 2, "Internet Search Engines", "Internet Search Engines",  "http://www.somewhere.com/", null, null, 0);
	menu.addItem("SmartSubMenu2", "Searchsds4", 2, "Internet Search Engines", "Internet Search Engines",  "http://www.somewhere.com/", null, "SmartSubMenu3", 1);

///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "SmartSubMenu3";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.cellSpacing = 3;
	mstyle.mainMenuWidth = null;

	menu.newMenu(mstyle);
	menu.addItem("SmartSubMenu3", "eSolution", 3, "eSolution", "eSolution",  "http://www.esolutiononline.com/", null, null, 0);
	menu.addItem("SmartSubMenu3", "eCommerce", 3, "eCommerce", "eCommerce",  "http://www.esolutiononline.com/ecommercestudio/", null, "SmartSubMenu4", 1);

///////////////////

	mstyle = new MenuStyle();
	mstyle.idName = "SmartSubMenu4";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.cellSpacing = 3;
	mstyle.mainMenuWidth = null;

	menu.newMenu(mstyle);
	menu.addItem("SmartSubMenu4", "Navigation", 4, "Navigation", "Navigation",  "http://www.esolutiononline.com/SmartMenu", null, null, 1);
	menu.addItem("SmartSubMenu4", "World Cart", 4, "World Cart", "WorldCart",  "http://www.esolutiononline.com/WorldCart", null, null, 1);

	showMenu();
}
