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("",
"therapy/acu.htm",
"therapy/all.htm",
"therapy/aro.htm",
"therapy/ayu.htm",
"therapy/chi_tra_med.htm",
"therapy/col.htm",
"therapy/cou.htm",
"therapy/cra.htm",
"therapy/dee.htm",
"therapy/hel.htm",
"therapy/hom_pod.htm",
"therapy/hom.htm",
"therapy/hum.htm",
"therapy/hyp.htm",
"therapy/int_hea.htm",
"therapy/int_phy.htm",
"therapy/iri.htm",
"therapy/kin.htm",
"therapy/mar.htm",
"therapy/med.htm",
"therapy/nat.htm",
"therapy/nut.htm",
"therapy/ost.htm",
"therapy/psy.htm",
"therapy/ref.htm",
"therapy/tho.htm",
"therapy/una.htm",
"therapy/n_nlp.htm",
"therapy/yog.htm");

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;
    }
  }
}

