function showToolbar()
{
	mstyle = new MenuStyle();
	mstyle.bgColor="#7EA2F3";
	mstyle.mainMenuBorder=0;
	mstyle.subMenuBorder=0;
	mstyle.subMenuWidth=160;
	mstyle.menuDelta = 0; // distance between mainmenu and submenu
	mstyle.clsMenuItemIE = "class=clsMenuItemIE";
	mstyle.clsMenuItemNS = "class=clsMenuItemNS";
	mstyle.bMenuStatic = 1;
	mstyle.mainMenuWidth = "100%";

	Menu = new Menu(mstyle);
	Menu.addItem("Main", "Home", "Home", "/English/Index.htm", null);
	Menu.addItem("About", "About us", "About us",null,null);
	Menu.addItem("Solutions", "Solutions", "Solutions",null, null);
	Menu.addItem("BBS", "Forum", "Forum","/Cgi-Bin/Community/BBS/", "");
	Menu.addItem("Customer", "Service", "Service",null, null);
	Menu.addItem("Sales", "Branch", "Branch","index07.htm", null);

	
    Menu.addSubItem("About", "Introduction", "",  "index011.htm", null);
	Menu.addSubItem("About", "Founder", "",  "index012.htm", null);
	Menu.addSubItem("About", "Our identification view", "",  "index013.htm", null);
	Menu.addSubItem("About", "Organization", "",  "index014.htm", null);
	Menu.addSubItem("About", "R&D Center", "",  "index015.htm", null);
	Menu.addSubItem("About", "Service", "",  "index016.htm", null);

	
	Menu.addSubItem("Solutions", "Business Model", "",  "index021.htm", null);
	Menu.addSubItem("Solutions", "Whole Solution Plan", "",  "index022.htm", null);
	Menu.addSubItem("Solutions", "Texture Identification Tech", "",  "index023.htm", null);
	Menu.addSubItem("Solutions", "Our Clients", "",  "index024.htm", null);
	
    Menu.addSubItem("Customer", "Sample label", "",  "index041.htm", null);
    Menu.addSubItem("Customer", "Our clientsĄ¯sample label", "",  "index042.htm", null);
	Menu.addSubItem("Customer", "Identification Instruction", "",  "index043.htm", null);
	Menu.addSubItem("Customer", "Label design ", "",  "index044.htm", null);

	Menu.showMenu();
}