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("",
"",
"processo_uk.htm",
"impasto_uk.htm",
"formatura_uk.htm",
"essiccamento_uk.htm",
"smaltatura_uk.htm",
"cottura_uk.htm",
"scelta_uk.htm",
"",
"scegliere_uk.htm",
"ambiente_uk.htm")

function go(which, num, win) {
  n = which.selectedIndex;
  if (n != 0) {
    var url = eval("urls" + num + "[n]")
        if (win) {
      //openWindow(url);
    }
        else if (url){
        parent.self.location.href = url;
    }
  }
}