function MakeArray()

             {

             this.length = MakeArray.arguments.length

             for (var i = 0; i < this.length; i++)

             this[i+1] = MakeArray.arguments[i]

             }



var siteopt = new MakeArray("How do I...?",



	"...get a library card?",

	"...check my account?",

	"...get a book from another library?",

	"...search for a book?",

	"...support FCL?",

	"...reserve a book?",

	"...renew a book?",

	"...use a computer in the library?",

	"...change text size for a website?",

	"...return items after hours?",

	"...get to FCL?",

	"...find a magazine or newspaper article?",

	"...do genealogy research?",

	"...calculate the value of my library?",

	"...know when the Library is open?",

	"...contact the library?",

	"...get a passport?");





var url = new MakeArray("",



//! ---  ...get a library card? -----

"how_library_card.htm",

//! ---  check my account? -----

"how_check_account.htm",

//! ---  get a book from another library?" -----

"interlibraryloan.htm",

//! ---  search for a book? -----

"how_search.htm",

//! ---  support FCL?" -----

"how_support.htm",

//! ---  reserve a book? -----

"how_reserve_book.htm",

//! ---  renew a book? -----

"how_renew_book.htm",

//! ---  use a computer in the library? -----

"computer_lab.htm",

//! ---  change text size for a website? -----

"how_change_textsize.htm",

//! ---  return items after hours?" -----

"hours.htm",

//! ---  get to FCL? -----

"directions.htm",

//! ---  find a magazine or newspaper article?" -----

"how_search.htm",

//! ---  do genealogy research? -----

"dunning.htm",

//! ---  calculate the value of my library? -----

"library_value_calculator.htm",

//! ---  know when the Library is open? -----

"hours.htm",

//! ---  contact the library? -----

"contact.htm",

//! ---  get a passport? -----

"passport_info.htm");





     function surfto(form)

     {

             i = form.SelectMenu.selectedIndex;

             if (i == 0) return;

             window.location.href = url[i+1];

     }





document.writeln('<FORM><SELECT NAME="SelectMenu" onChange="surfto(this.form)">');

         tot = siteopt.length;

             for (var i = 1; i <= tot; i++)

             document.write("<OPTION>" +siteopt[i]);

         document.writeln('</SELECT>');

         if (navigator.userAgent.indexOf("Mozilla/2") != -1);



         document.writeln('<input type="submit" name="go" value="go"></FORM>');


