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("",
"../bulletins/contents.html",
"../bulletins/editorials_v4.html",
"../anti-fascism/contents.html",
"../ireland/contents.html",
"../communities/contents.html",
"../race_and_class/contents.html",
"../education/contents.html",
"../drugs/contents.html",
"../archives/history.html",
"../archives/contents.html",
"../media/contents.html");

var urls2 = new buildArray("",
"http://www.redaction.org/news/feb_06.html#26_02_06",
"http://www.redaction.org/news/dec_04.html#21_12_04",
"http://www.redaction.org/news/june_04.html#19_06_04",
"http://www.redaction.org/news/oct_03.html#31_10_03",
"http://www.redaction.org/news/june_03.html#13_06_03",
"http://www.redaction.org/news/may_03.html#12_05_03",
"http://www.redaction.org/news/feb_03.html#12_02_03",
"http://www.redaction.org/news/jan_03.html#25_01_03",
"http://www.redaction.org/news/dec_02.html#07_12_02",
"http://www.redaction.org/news/nov_02.html#07_11_02");

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;
    }
  }
}
 

