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("",
"p1c1.html",
"p1c2.html",
"p1c3.html",
"p1c4.html",
"p1c5.html",
"p1c6.html",
"p1c7.html",
"p1c8.html",
"p1c9.html",
"p2.html",
"p2c1.html",
"p2c2.html",
"p2c3.html",
"p2c4.html",
"p2c5.html",
"p3.html",
"p3c1.html",
"p3c2.html",
"p3c3.html",
"p3c4.html",
"p3c5.html",
"p3c6.html",
"p3c7.html",
"p3c8.html",
"secret10.html",
"linkout.html");

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;
    }
  }
}

//
