function selectweb (theSelect) {
	var jmpURL=theSelect.options[theSelect.selectedIndex].value; 
	if(jmpURL!='') {
		window.open(jmpURL);
	} else {
		theSelect.selectedIndex=0;
	}
}