function gotoURL() {
  var Current =
	document.Form1.Select1.selectedIndex;
  window.location.href =
	document.Form1.Select1.options[Current].value;
  return false;
}
