 function goThere(sel){
	var linkList=sel.selectedIndex;
	if(!linkList==""){location.href=sel.options[linkList].value;return true;}
	return false;
	}
	
	function goToNewWindow(sel){
	var linkList=sel.selectedIndex;
	if(!linkList==""){window.open(sel.options[linkList].value);}
	return false;
	}
