LittleRedHat
Instructor
I'm using a form search. (code extract below) It works fine and it's ok that the pages load in the same window ... except I would like just the map to load in a new popup window. Is it possible?
<form name="search" id="search">
<select name="search">
<option value="index.htm">Quick Search</option>
<option value="map.htm">Map</option>
<option value="pots_chinese.htm">Pots: Chinese</option>
<option value="tools_sundries.htm">Sundries</option>
<option value="trees_mature.htm">Trees: Mature</option>
<option value="diary.htm">Workshop Diary</option>
</select>
<input name="search_go" type="button" id="search_go" onclick="location=this.form.search.options[this.form.search.selectedIndex].value;" value="GO" />
WTA
LRH
<form name="search" id="search">
<select name="search">
<option value="index.htm">Quick Search</option>
<option value="map.htm">Map</option>
<option value="pots_chinese.htm">Pots: Chinese</option>
<option value="tools_sundries.htm">Sundries</option>
<option value="trees_mature.htm">Trees: Mature</option>
<option value="diary.htm">Workshop Diary</option>
</select>
<input name="search_go" type="button" id="search_go" onclick="location=this.form.search.options[this.form.search.selectedIndex].value;" value="GO" />
WTA
LRH