
function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("homeid", "Page d'accueil", "Telecom Systems Homepage",  "/index.htm", null);
	menu.addItem("aboutusid", "A Propos", "A Propos de Telecom Systems", null, "/ent_pres.htm");
	menu.addItem("networkid", "Réseau", "Division Réseau",  null, "/net.htm");
	menu.addItem("securityid", "Sécurité", "Division Sécurité",  null, "/sec.htm");
	menu.addItem("storageid", "Stockage", "Division Stockage",  null, "/sto.htm");
	menu.addItem("engineerid", "Ingénierie", "Division Ingénierie", "/ing.htm", null);

	menu.addSubItem("aboutusid", "Présentation", "Présentation", "/ent_pres.htm", "_self");
	menu.addSubItem("aboutusid", "Historique & Organisation", "Historique & Organisation",  "/ent_his.htm", "_self");
	menu.addSubItem("aboutusid", "Séminaires", "Séminaires TS",  "/sem.htm", "_self");
	menu.addSubItem("aboutusid", "Nous Contacter", "Nous Contacter",  "/ent_cont.htm", "_self");
	menu.addSubItem("aboutusid", "Case Studies", "Case Studies",  "/ent_cas.htm", "_self");
	menu.addSubItem("aboutusid", "Certifications & Autorisations", "Certifications & Autorisations",  "/ent_cert.htm", "_self");

	menu.addSubItem("networkid", "ATM", "ATM",  "/net_atm.htm", "_self");
	menu.addSubItem("networkid", "Compression de données", "Compression de données",  "/net_com.htm", "_self");
	menu.addSubItem("networkid", "Ethernet & GIGA", "Ethernet & GIGA",  "/net_eth.htm", "_self");
	menu.addSubItem("networkid", "Voix sur IP", "Voix sur IP",  "/net_voi.htm", "_self");
	menu.addSubItem("networkid", "Wireless", "Réseaux sans fils",  "/sec_wir.htm", "_self");
	menu.addSubItem("networkid", "<hr>Services", "Services Réseaux",  "/net_ser.htm", "_self");
    
	menu.addSubItem("securityid", "Antivirus", "Antivirus",  "/sec_vir.htm", "_self");
	menu.addSubItem("securityid", "Authentification & SSO", "Authentification et SSO",  "/sec_aut.htm", "_self");
	menu.addSubItem("securityid", "End-Point Security", "End-Point Security",  "/sec_eps.htm", "_self");
	menu.addSubItem("securityid", "Firewall/VPN", "Firewall/VPN",  "/sec_fir.htm", "_self");
	menu.addSubItem("securityid", "Forensics", "Forensics", "/sec_for.htm", "_self");
	menu.addSubItem("securityid", "IDS/IPS", "IDS/IPS", "/sec_ids.htm", "_self");
	menu.addSubItem("securityid", "Recherche de vulnérabilité", "Recherche de vulnérabilité",  "/sec_vul.htm", "_self");
	menu.addSubItem("securityid", "Tests d'intrusion", "Tests d'intrusion",  "/sec_int.htm", "_self");
	menu.addSubItem("securityid", "Web Security", "Web Security",  "/sec_web.htm", "_self");
	menu.addSubItem("securityid", "Wireless", "Réseaux sans fils",  "/sec_wir.htm", "_self");
	menu.addSubItem("securityid", "<hr>Services", "Services",  "/sec_ser.htm", "_self");

	menu.addSubItem("storageid", "Atempo", "Atempo",  "/sto_ate.htm", "_self");
	menu.addSubItem("storageid", "Network Appliance", "Network Appliance",  "/sto_net.htm", "_self");

//	menu.addSubItem("engineerid", "Domaine d&rsquo;activités", "Domaine d'activités",  "/eng_act.htm", "_self");
//	menu.addSubItem("engineerid", "Modalités d&rsquo;intervention", "Modalités d'intervention",  "/eng_mod.htm", "_self");
//	menu.addSubItem("engineerid", "Domaine d&rsquo;expertise", "Domaine d'expertise",  "/eng_exp.htm", "_self");

	menu.showMenu();
}
