<html> <head> <TITLE>JavaScript Library Catalog Shell</TITLE> </head> <!------------------------------------------------------------------- This is the file that you will use to start the JavaScript Library Catalog Shell. Point your web browser at this file first. All this HTML file does is set up two frames: an upper thin menu frame, and a lower main display box. Three files make up the entire Library Catalog Shell: 1. index.html 2. catalog1.htm 3. catalog2.htm ---------------------------------------------------------------------> <!-- This first line sets the height of the menu box at 60 pixels. Change the number "60" to increase or decrease the size of your menu box. --> <frameset rows=60,*> <!-- This next line directs the file "catalog1.htm" to be loaded into the first "menu" row at the top. Change "no" to "yes" to allow a scroll bar to appear in the menu (not recommended). --> <frame name="panel" src="catalog1.htm" scrolling="no"> <!-- This next line directs the file "catalog2.htm" to be loaded into the second "box" row at the bottom. Change "yes" to "no" to disable the scroll bar (not recommended) --> <frame name="display" src="catalog2.htm" scrolling="yes"> </frameset> <!-- This next section of code will only display if the user does not have a browser which cannot handle frames. You can place an HTML link to a non-frames version of the catalog (native version) in this section of code. Just change the section of code "http://your.catalog.link.here" to your own catalog's URL. --> <noframes> <h2 align=center>JavaScript searching</h2> Your browser needs to handle frames and have JavaScript enabled. Please go to <a href="http://your.catalog.link.here"> Non Frames Catalog</A> to search for items. </noframes> <!------------------------------------------------------------------- This template can be freely used, modified, and disseminated by libraries and educational institutions for non-profit use so long as this section of HTML commented text is retained. Use by for-profit corporations is prohibited unless permission is obtained from the designer: Raleigh Muns, Reference Librarian Thomas Jefferson Library University of Missouri-St. Louis St. Louis, MO 63121 muns@umsl.edu ph: 314-516-5059 ---------------------------------------------------------------------> </html>