To the Great Thinkers in
JS land:
Does anybody know how to open a separate (and controlled, regarding attributes) window from a form? While I've done this hundreds of times from a basic href link (using the various arguments to the "window.open" method), I've never learned how to do it from within the form tag, nor the input tag (as part of a form). I also know how to manipulate the pop-up window features once it's open, but I'd rather set the control before it opens.
Here's my basic HTML code:
-------
<form name="layoutRegion1Form" action="http://edev:8765/custom/query.html" target="_blank" method="get">
<input type="hidden" name="col" value = "enet">
<input type="hidden" name="style" value = "standard">
<table class="popSearchTable" height="84" border="0" cellspacing="0"
cellpadding="0" style="background-image: url(../img/cell_bg.gif)">
<tr align="left" valign="top">
<td width="740" height="50">
<div style="position:absolute;left:18px;top:12px"><p class="body11Gray">Search E-Net as per your <br>text search criteria</p></div>
<div style="position:absolute;left:192px;top:18px"><inp ut type="reset" name="SEARCH-97" value="Clear" id="FormsButton1" class="button11"></div>
<div style="position:absolute;left:18px;top:46px"><inpu t id="FormsEditField1" type="text" name="qt" size="19" maxlength="50" class="form13"></div>
<div style="position:absolute;left:192px;top:45px"><inp ut type="submit" name="SEARCH-97" value=" Go " id="FormsButton2" class="button13"></div>
</td>
</tr>
</table>
</form>
-------
Of course, the "target" attribute (above) will open a separate window, but without the needed control. That's not good enough.
Any help would be greatly appreciated.