The PageBrowser

The PageBrowser applet tag is the meat of the PageBrowser System.
The parameters in the tag tell the PageBrowser what frames you are using, how many pages there are, and what to put in each

Excerpt from "pagebrowser.html":

  <APPLET  CODE = "ca.ucalgary.phas.map.contentNavigator.PageBrowser.class"
           CODEBASE = "../../../classes" 
           ARCHIVE = "ucalgaryjars/page_browser.jar,ucalgaryjars/utilities.jar"
           WIDTH = "500" HEIGHT = "25" >
    <PARAM NAME = "VERBOSE" VALUE = "false">
    <PARAM NAME = "PAGE_COUNT" VALUE = "7">
    <PARAM NAME = "FRAME_COUNT" VALUE = "3">
    <PARAM NAME = "URL_BASE_RELATIVE_TO_DOC" VALUE = "true">
    <PARAM NAME = "URL_BASE_RELATIVE_TO_CODE" VALUE = "false">
    <PARAM NAME = "URL_BASE" VALUE = "">
    <PARAM NAME = "LOAD_FIRST_PAGE_ON_INIT" VALUE  = "true">
    <PARAM NAME = "FRAME_NAMES" VALUE = "MAIN,RIGHT_SIDE,LEFT_SIDE">
    <PARAM NAME = "FRAME_PAUSE_POLICY" VALUE = "true,false,false">
    <PARAM NAME = "MAIN_FRAME_URLS" VALUE = "frameset.html,frameset.html,page3.html,frameset.html,frameset.html,page6.html,frameset.html">
    <PARAM NAME = "LEFT_SIDE_FRAME_URLS" VALUE = "applet.html,pic2.html,null,pic4.html,applet.html,null,applet.html">
    <PARAM NAME = "LEFT_SIDE_FRAME_APPLET_NAMES" VALUE = "pb_test_applet,null,null,null,pb_test_applet,null,pb_test_applet">
    <PARAM NAME = "LEFT_SIDE_FRAME_APPLET_COMMANDS" VALUE = "Page1,null,null,null,Page5,null,Page7">
    <PARAM NAME = "RIGHT_SIDE_FRAME_URLS" VALUE = "page1.html,page2.html,null,page4.html,page5.html,null,page7.html">
    <PARAM NAME = "PAGE_LIST_VISIBLE" VALUE = "true">
    <PARAM NAME = "PAGE_LIST_ENABLED" VALUE = "true">
    <PARAM NAME = "PAGE_COUNTER_VISIBLE" VALUE = "false">
    <PARAM NAME = "PREV_BUTTON_VISIBLE" VALUE = "true">
    <PARAM NAME = "NEXT_BUTTON_VISIBLE" VALUE = "true">
    <PARAM NAME = "RESET_BUTTON_VISIBLE" VALUE = "true">
  </APPLET>
  

The simplest way to build your own pagebrowser.html is obviously to copy the one in this example and edit it to your liking. The parameters are described below.