<!--
function go(form) {
     url = form1.menu1.options[form1.menu1.selectedIndex].value;
     if (url != "-" )  top.location = url;
  }

function formHandler() {
		var URL = document.form1.menu1.options[document.form1.menu1.selectedIndex].value;
		window.location.href = URL;
		}
		
//-->  

