<!--
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.html",
"javascript:history.back(1)",
"/chancellor/index.html",
"/trustees/index.html",
"/academics/index.html",
"/business/index.html",
"/employment/index.asp",
"/foundation/index.html",
"/grants/index.html",
"/is/index.html",
"/international/index.html",
"/commission/index.html",
"/strategicplan/index.html",
"/purchasing/index.asp",
"/events/index.asp",
"/directory/index.asp");


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;
    }
  }
}


// -->