
// Create array to hold four URLs;
var dest = new Array(9);
dest[0] = window.location.href;
dest[1] = "http://www.wellnessctr.org/body.cfm?id=171&action=detail&ref=102";
dest[2] = "http://www.carenewengland.org/body.cfm?id=245&mid=303";
dest[3] = "http://www.cnewellnessctr.org/body.cfm?id=171&action=detail&ref=258";
dest[4] = "http://www.wellnessctr.org/body.cfm?id=171&action=detail&ref=195";
dest[5] = "http://www.cnewellnesscenter.org/body.cfm?id=102";
dest[6] = "http://www.cnewellnesscenter.org/body.cfm?id=54&action=detail&ref=12";
dest[7] = "http://www.cnemaster.org/landingPage4.cfm?topicID=135&facilityID=4";
dest[8] = "http://www.cnemaster.org/landingPage4.cfm?topicID=135&facilityID=4";




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]);

}

