For example, a Google search box to search the webinfo site would look like:
The HTML source needed to generate this form is:
<!-- Search Google -->
<center>
<form method="get" action="http://www.google.com/u/washington">
<table cellspacing="0" border="0">
<tr valign="middle">
<td><a href="http://www.google.com/"><img src=
"http://www.google.com/logos/Logo_40wht.gif" border="0" alt="Google"
/></a>
</td><td>
<input type="text" name="q" size="31" maxlength="255" value= "" />
<input type="hidden" name="hq" value="inurl:www.washington.edu/webinfo/" />
<input type="submit" name="sa" value="Search Webinfo" />
</td>
</tr>
</table>
</form>
</center>
<!-- Search Google -->
To use Google for your site, you'll need to change the hidden field named hq to contain the URL for your site, and the text of the submit button. Be sure to not change the action="http://www.google.com/u/washington" attribute for the form itself.