
/**
* Switch to the URL of the selected Item in the Dropdown-Menu
*/
function go2url(formEl){
 if (formEl.options[formEl.selectedIndex].value != "none") {
	document.location.href = formEl.options[formEl.selectedIndex].value
 }                       
}

