function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);
 
menu = new Menu();
menu.addItem('A0','Floys','Social, territorial Alife creatures',null,null);
menu.addSubItem('A0','Description','Description of the Floys applets','/ofiles/Floys2.html');
menu.addSubItem('A0','Basic Floys','The basic version of the Floys applet','/ofiles/JavaFloys.html');
menu.addSubItem('A0','Individualistic Floys','Supports individual attributes for each Floy','/ofiles/iFloys.html');
menu.addSubItem('A0','Evolving Floys','Floys evolution by genetic algorithm','/ofiles/Efloys.html');
menu.addSubItem('A0','Tcl/Tk Floys','Floys tclet, implemented in Tcl/Tk','/ofiles/tFloys640_1.html');
menu.addSubItem('A0','Source Code','Free source code of all applets','/ofiles/Download.html');
menu.addItem('A1','GA Playground','A genetic algorithm toolkit implemented in Java',null,null);
menu.addSubItem('A1','Table of Contents','Table of contents','/ofiles/ga/gaa/gaa.html#GAA');
menu.addSubItem('A1','Features','Additional information about the program','/ofiles/ga/gaa/gaa.html#GeneralNotes');
menu.addSubItem('A1','Examples','Sample implementations','/ofiles/ga/gaa/gaa.html#Examples');
menu.addSubItem('A1','Download','Download program files','/ofiles/ga/gaa/gaa.html#Download');
menu.addItem('A2','Alife Database','An online interactive database of Alife-related sites on the web',null,null);
menu.addSubItem('A2','Description','Alife Database Weblication','/aldb/default.asp');
menu.addSubItem('A2','Search','Search the database','/aldb/adform.asp');
menu.addSubItem('A2','Edit a record','Edit an existing record','/aldb/adselect.asp');
menu.addSubItem('A2','Add a new record','Add a new record','/aldb/adadd.asp');
menu.addSubItem('A2','Html format','Alife Database in Html format','/ofiles/ad/adb/adtop.html');
menu.addSubItem('A2','Old versions','Old versions of Alife Database','/ofiles/oldversions.html');
menu.addItem('A3','Picture Browser','The Annotated Picture Browser - Slide show applet',null,null);
menu.addSubItem('A3','Introduction','The Java Annotated Picture Browser Applet','/ofiles/PictureBrowser/Demo/PictureBrowser.html');
menu.addSubItem('A3','Dancing Baby','The Dancing Baby recites The Raven by E.G.Poe','/ofiles/PictureBrowser/DancingBaby/PictureBrowser.html');
menu.addSubItem('A3','Framed Version','PicturBrowser applet implemented in Html frames','/ofiles/PictureBrowser/Framed/PictureBrowser.html');
menu.addSubItem('A3','Dolls','PictureBrowser displaying the Dolls pictures','/ofiles/PictureBrowser.html');
menu.addSubItem('A3','Download','Download the PictureBrowser applet','/ofiles/pbdownload.html');
menu.addItem('A4','Dolls','3D assemblage pictures based on small plastic dolls',null,null);
menu.addSubItem('A4','Introduction','Introduction page to Dolls gallery','/ofiles/dolls.html');
menu.addSubItem('A4','Page #1','Thumbnails table - first page','/ofiles/Dolls1.html');
menu.addSubItem('A4','Page #2','Thumbnails table - second page','/ofiles/ulthm2.html');
menu.addSubItem('A4','Page #3','Thumbnails table - third page','/ofiles/ulthm3.html');
menu.addSubItem('A4','Page #4','Thumbnails table - fourth page','/ofiles/ulthm4.html');
menu.addSubItem('A4','Picture Browser','Dolls pictures displayed by the Annotated Picture Browser','/ofiles/PictureBrowser.html');
menu.addItem('A5','Experiments','Miscellaneous Experimenting (Alife, XML, Web Design)',null,null);
menu.addSubItem('A5','Text Oriented GUI','Text-Oriented user interface, with a Java CA (Cellular Automata) demo','/ofiles/JcaToi.html');
menu.addSubItem('A5','Dynamic Navigation','Database driven, Focus+Context web site navigation system','/dynanav.asp');
menu.addSubItem('A5','Xml Site Navigation','Four web site navigation systems based on the same XML file','/xml/xml.html');
menu.addItem('A6','Miscellaneous','Miscellaneous topics, personal information and credits',null,null);
menu.addSubItem('A6','About Me','Some personal information','/ofiles/aboutme.html');
menu.addSubItem('A6','Credits','Credits to those I borrowed from','/ofiles/credits.html');
menu.addSubItem('A6','Code Sharing','A note about sharing code','/ofiles/ad/adcodesharing.html');

menu.showMenu();
}

