Menu Search Form/New Window

admin

Administrator
Staff member
My menu search form trawls a database at a remote URL:

form name="form1" onsubmit="return checkit()" action=http://remote.asp?StoreURL=mystore method=get>
<div align="center"><b><font size="2" face="Verdana, Arial, Helvetica, sans-serif">
<input type="hidden" value=http://www.webdeveloper.com/forum/archive/index.php/"myvalue" name="storeurl">
<font color="#0066FF">SEARCH BY</font></font></b>
<select name="searchby">
<option value="name">Name</option>
<option value="place">Place</option>
<option value="content">Keyword(s)</option>
<option value="country">Country</option>
</select>
<input name="searchbycriteria" size="25">
<input type="image" src="../mainpix/Go.gif" width="25" height="28" align="bottom" name="submit">
</div>
</form>

That works fine but I'd prefer the search results page generated to open in a new window, say 650 x 350, so that the form page remains visible behind it. Any ideas much appreciated.
 
Top