// JavaScript Document
// Create array to hold four URLs;
var dest = new Array(6);
dest[0] = window.location.href;
dest[1] = window.location.href;
dest[2] = "/team/bermuda/";
dest[3] = "/team/canada/";
dest[4] = "/team/ireland/";
dest[5] = "/team/netherlands/"
dest[6] = "/team/scotland/";


function go(d) {

// Change location of current window one selected from menu
// d.menu.options.selectedIndex returns a number that corresponds
// to the choice they selected in the pop up menu on the form
// If a user selected the first choice, selectedIndex = 0 and the 
// URL will be set to dest[0] or http://www.utexas.edu


window.location.href = dest[d.destination.options.selectedIndex];      

// Open new window with selected location
// var x = window.open(dest[d.destination.options.selectedIndex],"New Window");

// To set the URL for another frame in this frameset
// top.framename.location.href = dest[d.menu.options.selectedIndex]);

}

