Hello, hopefully you can help me. I have the following code, which opens a new internet browser window:
<form>
<p align="center"><b></b>
<select id="setit" style="color: #0000FF" size="1" name="test">
<option value="">Please Select</option>
<option value="http://www.nu.nl">nu</option>
<option value="http://www.telegraaf.nl">telegraaf</option>
<option value="http://www.google.com">Google</option></select>
<input type="button" value="Go"
onclick="window.open(setit.options[setit.selectedIndex].value)">
</p></form>
What do I need to change so the onclick opens the link in the same internet browser window instead of opening a new one?
Many thanks, Ralfie


