function leapto(form) {
var uid = new Date().getTime(); // unique ID to name popup
var myindex=form.dest.selectedIndex; // number of selection
str = new String(form.dest.options[myindex].value); // value of selection
strarray = str.split(/\,/); // splits value on a comma

if (strarray[0] == "frame") // loads in frames
parent.location.href = strarray[1];
else // load in popup window
window.open(strarray[1], uid, "toolbar=yes,scrollbar=0,location=0,statusbar=0,menubar=yes"); 
myindex = 1; // reset pulldown menu
}
