// ***********************************************************
//                  Select Box Script.
//           Gjermund Marqvardsen - August 1998
//            http://sylfest.hiof.no/~gjermujm/
// ***********************************************************

<!--
function buildArray() {
     var a = buildArray.arguments;
     for (i=0; i<a.length; i++) {
          this[i] = a[i];
     }
     this.length = a.length;
}

var urls1 = new buildArray("",
     "index.shtml",
     "god_history.shtml",
     "human_history.shtml",
     "hell_history.shtml",
     "guest.shtml",
     "about.shtml");

function go(which, num, win) {
     n = which.selectedIndex;
     if (n != 0) {
          var url = eval("urls" + num + "[n]")
          if (win) {
               openWindow(url);
          } else {
               location.href = url;
          }
     }
}

// -->
