I have a dropdown jump menu which I want to take the user to a new window of a specified size.
I'm using the following code in my head
Code:
<script type="text/javascript">
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
//-->
</script>
and the following in my body
<form>
<select name="jumpMenu" id="jumpMenu" onchange="MM_jumpMenu('window.open()',this,0)">
<option value="../thisplace.html">visit this place</option>
<option value="../thatplace.html">visit that place</option>
<option value="../otherplace.html">visit other place</option>
</select>
</form>
Can anyone tell me where I should put the parameters for the size and features of the newly opened window?
cheers everybody
snappy