<!--

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("",
"cd_duplicators.html",
"cd_printers.html",
"duplication.html",
"repair.html",
"drives.html",
"dvd_dup.html",
"dvd_ram.html",
"otc_printers.html",
"software.html",
"storage.html",
"tapes.html");

function go(which, num, win) {
  n = which.selectedIndex;
  if (n != 0) {
    var url = eval("urls" + num + "[n]")
    if (win) {
      openWindow(url);
    } else {
      top.location.href = url;
    }
  }
}

function openWindow(url) {
  popupWin = window.open(url, 'remote', 'resizable,scrollbars,width=600,height=400,left=50,top=10')
}

function openWindow2(url) {
  popupWin = window.open(url, 'remote', 'resizable,scrollbars,width=450,height=480,left=10,top=10')
}

// -->
