function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

menu = new Menu();

menu.addItem("optionsid", "<IMG SRC='options.gif' BORDER='0'>", "Options",  null, null);

menu.addSubItem("optionsid", "<IMG SRC='goback.gif' BORDER='0'> Go Back Home", "Go back to the Microcosm homepage",  "/index.html");
menu.addSubItem("optionsid", "<IMG SRC='help.gif' BORDER='0'> Help", "Help on using this page",  "help.htm");

// alert( HTMLstr );

menu.showMenu();
}

