drop down boxes opening new window - opening a new window using drop boxes

They have: 5,633 posts

Joined: Jan 1970

Is there a way when someone selects from a drop box for it to open in a brand new window? I've used the TARGET="Resource Window" But that doesn't work. Below is how I set one of my options, can anyone tell me how to do this?
<OPTION value="webaddress.html" target="Resource Window">Weekly League Summary

Thanks in advance

They have: 5,633 posts

Joined: Jan 1970

<script language="JavaScript">
<!-- hide script from old browsers

var destination = "";

function navigate(destination) {
if (destination != "") {
window.location.href = destination;
}
}

// end hiding from old browsers -->
</script>

<form name="">
<select size="1"
onChange="javascript:navigate(this.options[selectedIndex].value)">
<option value="DESTINATION">NAME</option>
</select>
</form>

----------
[email protected]
http://go.to/hass

Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.