<!--

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.travelcreek.com/botswana.htm",
"http://www.travelcreek.com/Canada.htm",
"http://www.travelcreek.com/France.htm",
"http://www.travelcreek.com/Italy.htm",
"http://www.travelcreek.com/travelguides/mauritius.htm",
"http://www.travelcreek.com/morocco.htm",
"http://www.travelcreek.com/namibia.htm",
"http://www.travelcreek.com/South Africa.htm",
"http://www.travelcreek.com/Spain.htm",
"http://www.travelcreek.com/England.htm",
"http://www.travelcreek.com/us.htm");

var urls2 = new buildArray("",
"http://www.travelcreek.com/algarve.htm",
"http://www.travelcreek.com/Amsterdam.htm",
"http://www.travelcreek.com/Barcelona.htm",
"http://www.travelcreek.com/Capetown.htm",
"http://www.travelcreek.com/travelguides/chicago.htm",
"http://www.travelcreek.com/cornwall.htm",
"http://www.travelcreek.com/courchevel.htm",
"http://www.travelcreek.com/Dublin.htm",
"http://www.travelcreek.com/durban.htm",
"http://www.travelcreek.com/Edinburgh.htm",
"http://www.travelcreek.com/florida.htm",
"http://www.travelcreek.com/franschoek.htm",
"http://www.travelcreek.com/hermanuswhaleroute.htm",
"http://www.travelcreek.com/istanbul.htm",
"http://www.travelcreek.com/travelguides/lasvegas.htm",
"http://www.travelcreek.com/London.htm",
"http://www.travelcreek.com/madrid.htm",
"http://www.travelcreek.com/travelguides/manhattan.htm",
"http://www.travelcreek.com/Marseilles.htm",
"http://www.travelcreek.com/Montreal.htm",
"http://www.travelcreek.com/Negril.htm",
"http://www.travelcreek.com/travelguides/newyorkcity.htm",
"http://www.travelcreek.com/nice.htm",
"http://www.travelcreek.com/ottawa.htm",
"http://www.travelcreek.com/oxford.htm",
"http://www.travelcreek.com/paarl.htm",
"http://www.travelcreek.com/Paris.htm",
"http://www.travelcreek.com/provence.htm",
"http://www.travelcreek.com/quebec.htm",
"http://www.travelcreek.com/Rio.htm",
"http://www.travelcreek.com/rome.htm",
"http://www.travelcreek.com/travelguides/sanfrancisco.htm",
"http://www.travelcreek.com/sardinia.htm",
"http://www.travelcreek.com/travelguides/seattle.htm",
"http://www.travelcreek.com/stellenbosch.htm",
"http://www.travelcreek.com/Toronto.htm",
"http://www.travelcreek.com/val.htm",
"http://www.travelcreek.com/travelguides/valencia.htm",
"http://www.travelcreek.com/vancouver.htm",
"http://www.travelcreek.com/travelguides/venice.htm",
"http://www.travelcreek.com/vermont.htm",
"http://www.travelcreek.com/windhoek.htm",
"http://www.travelcreek.com/zante.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;
    }
  }
}

// -->