
// Create array to hold four URLs;
var dest = new Array(11);
dest[0] = window.location.href;
dest[1] = "http://www.butler.org/landingPage4.cfm?topicID=296&facilityID=1";
dest[2] = "http://www.butler.org/LandingPage4.cfm?topicID=312";
dest[3] = "http://www.butler.org/landingPage4.cfm?topicID=300&facilityID=1";
dest[4] = "http://www.butler.org/landingPage4.cfm?topicID=130&facilityID=1";
dest[5] = "http://www.butler.org//body.cfm?id=256&action=detail&ref=72";
dest[6] = "http://www.butler.org//body.cfm?id=256&action=detail&ref=62";
dest[7] = "http://www.butler.org/LandingPage4.cfm?topicID=159";
dest[8] = "http://www.butler.org/LandingPage4.cfm?topicID=311";
dest[9] = "http://www.butler.org/landingPage4.cfm?topicID=298&facilityID=1";
dest[10] = "http://www.butler.org//body.cfm?id=233";



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]);

}

