function showToolbar(path, titre, racine, ring, home)
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();

	if (ring == "n") { 
	menu.addItem("Main", "Sportcars menu", "Sportcars",  null, null);
	menu.addSubItem("Main", "Home", "Home Page", racine + "main/sportscarhome.html");
	menu.addSubItem("Main", "News", "Sportcars News",  racine + "main/news.html");
	menu.addSubItem("Main", "Forum", "Sportcars Forum",  "http://forum.hit-parade.com/forum.asp\?s=p35278\&t=2");
	menu.addSubItem("Main", "Contact", "Sportcars Contacts",  racine + "main/contacts.html");
	menu.addSubItem("Main", "Sorties", "Sportcars Meetings",  racine + "show/index.html");
	}

	menu.addItem(titre, titre + " menu", titre + " options",  null, null);
	menu.addSubItem(titre, "Home", titre + " Home", home);
	menu.addSubItem(titre, "Articles", titre + " articles", path + "articles.html");
	menu.addSubItem(titre, "News", titre + " news", path + "news.html");
	menu.addSubItem(titre, "Photos", titre + " photos",  path + "photos.html");
	menu.addSubItem(titre, "Specs", titre + " specs",  path + "specs.html");
	menu.addSubItem(titre, "Sorties", titre + " sorties", path + "meeting.html");
	menu.addSubItem(titre, "Liens", titre + " liens",  path + "liens.html");


	menu.addItem("EMail", "E-Mail", "Contacts",  null, null);
	menu.addSubItem("EMail", "Webmaster", " Webmaster mail", "mailto:accf-sprtcar@ifrance.com");
	menu.addSubItem("EMail", "ACCF", " JC Petitpré", "mailto:jpetitpre@aol.com");

	menu.showMenu();
}