// Create array to hold four URLs;
var dest = new Array(4);
dest[0] = window.location.href;
dest[1] = "http://www.provost.bilkent.edu.tr/officerec/offrector.html";
dest[2] = "http://www.bilkent.edu.tr/bilkent-tr/academic/calendar/";
dest[3] = "http://www.bilkent.edu.tr/bilkent/academic/graduate/";
dest[4] = "http://www.bilkent.edu.tr/~Bilnews/";
dest[5] = "http://www.bilkent.edu.tr/~spor/";
dest[6] = "http://goto.bilkent.edu.tr/whatson/";
dest[7] = "http://www.provost.bilkent.edu.tr/publ_pol.htm";
dest[8] = "http://www.bilkent.edu.tr/~transprt/";
dest[9] = "http://www.kariyer.bilkent.edu.tr";
dest[10] = "http://ada.bilkent.edu.tr/busel/announce/stdindex.php";
dest[11] = "http://www.adaybilgi.bilkent.edu.tr";

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.bilkent.edu.tr


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]);

}



