
function JumpURL(selection) {
   var tempIndex, selectedURL;
   tempIndex = selection.selectedIndex;
   selectedURL = selection.options[tempIndex].value;
   window.top.location.href = selectedURL;
}

