ПРИМЕР

 

Код:
 <head>
<title>Форма с кнопкой перехода. Радиокнопка для выбора загрузки раздела меню (новое окно)</title>
</head>
<BODY >
<form name="mycombowopt">
<select name="example" size=1>
<option value="https://pc.forum-top.ru/">Комп</option>
<option value="https://pc.forum-top.ru/">Интересно </option>
<option value="https://pc.forum-top.ru/">Радио </option>
</select> <input type="button" value="Go" onClick="gothere()"> <br>
<input type="checkbox" name="windowoption" value="ON">Открыть в новом окне</p>
</form>
<script language="javascript">
function gothere(){
var thebox=document.mycombowopt
if (thebox.windowoption.checked){
if (!window.newwindow)
newwindow=window.open("")
newwindow.location=
thebox.example.options[thebox.example.selectedIndex].value
}
else
location=
thebox.example.options[thebox.example.selectedIndex].value
}
</script>
</body>