// JavaScript Document
function JumpURL(selection) {
var tempIndex, selectedURL;
tempIndex = selection.selectedIndex;
selectedURL = selection.options[tempIndex].value;
window.open(selectedURL, 'netselect');
//window.top.location.href = selectedURL;
}