
// Create array to hold four URLs;
var dest = new Array(10);
dest[0] = window.location.href;
dest[1] = "http://www.butler.org/landingPage4.cfm?topicID=130&facilityID=1";
dest[2] = "http://www.cnewellnessctr.org/body.cfm?id=171&action=detail&ref=258";
dest[3] = "http://www.wellnessctr.org/body.cfm?id=171&action=detail&ref=195";
dest[4] = "http://www.cnemaster.org/landingPage4.cfm?topicID=158&facilityID=6";
// jsullivan 09/03/2010: Landing page for Infertility unplublished, link now points to new MicroSite
//dest[5] = "http://www.womenandinfants.org/landingPage4.cfm?topicID=128&facilityID=7";
dest[5] = "http://www.womenandinfants.org/ri/rei";
dest[6] = "http://www.kenthospital.org/body.cfm?id=327&action=detail&ref=78&mid=394";
dest[7] = "http://www.cnehomehealth.org/body.cfm?id=128";
dest[8] = "http://www.kenthospital.org/body.cfm?id=327&action=detail&ref=51&limit_facility=2";
dest[9] = "http://www.cnemaster.org/landingPage4.cfm?topicID=135&facilityID=4";
dest[10] = "http://www.womenandinfants.org/body.cfm?id=835&action=detail&ref=128&limit_facility=7";



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]);

}

