<!--
// Create array for case page references
function makeArray() {
var args = makeArray.arguments;
   for (var i=0; i < args.length; i++) {
      this[i] = args[i];
   }
   this.length = args.length;
}

// Store case page descriptions
var casePage = new makeArray("Select a mineral case",
   "Case 67",
   "Case 68",
   "Case 69",
   "Case 70",
   "Case 71",
   "Case 72",
   "Case 73",
   "Case 74",
   "Case 75",
   "Case 76",
   "Case 77",
   "Case 78",
   "Case 79",
   "Case 80",
   "Case 81",
   "Case 82");

// Store case page URLs
var caseURL = new makeArray(" ",
   "../collection/case67.html",
   "../collection/case68.html",
   "../collection/case69.html",
   "../collection/case70.html",
   "../collection/case71.html",
   "../collection/case72.html",
   "../collection/case73.html",
   "../collection/case74.html",
   "../collection/case75.html",
   "../collection/case76.html",
   "../collection/case77.html",
   "../collection/case78.html",
   "../collection/case79.html",
   "../collection/case80.html",
   "../collection/case81.html",
   "../collection/case82.html");

// Go to selected page
function goPage(form) {
   i = form.menu.selectedIndex;
   if (i != 0) {
      window.location.href = caseURL[i];
   }
}

// Display jumplist menu
document.write('<FORM><SELECT NAME = "menu" onChange = "goPage(this.form)">');
for (var i=0; i<casePage.length; i++) {
   document.write('<OPTION>' + casePage[i]);
}
document.write('</SELECT></FORM>');
//-->







