i use a 3rd pasrty search form which is called by:
<head>
<script language="JavaScript" src="zoom_index.js"></script>
<script language="JavaScript" src="search.js"></script>
</head>
<form method="GET" action="search.html">
<input type="text" name="zoom_query" size="20">
<input type="submit" value="Search">
<small> Results per page:
<select name="zoom_per_page">
<option selected>10</option>
<option >20</option>
<option >100</option>
</select><br><br>Match:
<input type="radio" name="zoom_and" value="0" checked>any search words
<input type="radio" name="zoom_and" value="1">all search words
</small>
</form>
I need to put in some links to a fixed search page, i.e. the search term is 'cute'. I want to be able to click a href which runs the search for 'cute'.
<head>
<script language="JavaScript" src="zoom_index.js"></script>
<script language="JavaScript" src="search.js"></script>
</head>
<form method="GET" action="search.html">
<input type="text" name="zoom_query" size="20">
<input type="submit" value="Search">
<small> Results per page:
<select name="zoom_per_page">
<option selected>10</option>
<option >20</option>
<option >100</option>
</select><br><br>Match:
<input type="radio" name="zoom_and" value="0" checked>any search words
<input type="radio" name="zoom_and" value="1">all search words
</small>
</form>
I need to put in some links to a fixed search page, i.e. the search term is 'cute'. I want to be able to click a href which runs the search for 'cute'.