<!--

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("",
"http://www.sostourisme.org/resto.shtml",
"http://www.sostourisme.org/rooms.shtml",
"http://www.sostourisme.org/suites.shtml",
"http://www.sostourisme.org/cottages.shtml",
"http://www.sostourisme.org/dining.shtml",
"http://www.sostourisme.org/winter.shtml",
"http://www.sostourisme.org/summer.shtml",
"http://www.sostourisme.org/grounds.shtml",
"http://www.sostourisme.org/guests.shtml",
"http://www.sostourisme.org/parties.shtml",
"http://www.sostourisme.org/massage.shtml",
"http://www.sostourisme.org/other.shtml");


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;



    }

  }

}

// -->
