1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21: | <script language="javascript">
function to(form)
{
var myindex=form.menu.selectedIndex
if (form.menu.options[myindex].value != "0")
{
window.open(form.menu.options[myindex].value,
target="_blank");
}
}
//-->
</script>
<form name="nav">
<select name="menu" onchange="to(this.form)" allowtransparency="true">
<option selected>---</option>
<option value="http://www.google.de">test1</option>
<option value="http://www.google.de">test2</option>
</select>
</form>
|