  function createNavMenu(choiceIndex) {
    var menuChoices = ["Main page", "/jrogers/Troop894/Default.html",
                       "Calendar", "/jrogers/Troop894/calendar.html",
                       "Forms", "/jrogers/Troop894/forms/Default.html",
                       "Honor Rolls", "/jrogers/Troop894/honor rolls.html",
                       "Chicago Area Council", "http://chicagobsa.org/",
                       "Fort Dearborn District", "http://www.fortdearborn.org/",
                       "Troop History", "/jrogers/Troop894/history.html",
                       "Merit Badges", "/jrogers/Troop894/merit badges.html",
                       "Contact Information", "/jrogers/Troop894/contact.html" ];

    document.write(
      "<img src='/jrogers/Troop894/images/FleurDeLis.jpg' />\n",
      "<hr />\n",
      "<ul>\n"
    );
    choiceIndex--;                     
    for (var menuIndex = 0; menuIndex < menuChoices.length; menuIndex = menuIndex+2) {
      if (choiceIndex * 2 == menuIndex) {
        document.write("<li><strong>",menuChoices[menuIndex],"</strong></li>\n");
      }
      else {
        document.write("<li><a href='",menuChoices[menuIndex+1],"'>",
                       menuChoices[menuIndex],"</a></li>\n");
      }
    }
    document.write( 
      "</ul>\n",
      "<hr />\n"
    );
  }

  
