|
There are not a lot of options here. Make a normal html form,
with the proper action pointing to google,
and one hidden element to designate your departmental web pages.
Here is an example to search the ACCC web pages:
Which is to say:
<form action="http://www.google.com/u/uiatc" method=get>
Query: <input type=text name="q">
<input type=hidden name=hq value="inurl:www.uic.edu/depts/accc">
<input type=submit value="Google Search">
</form>
That's pretty much it. Set the input widget named "q"
for the user's query. (Or, I suppose, you could hard-code that
if you just wanted a simple link to produce a hard-coded search.)
And set the widget named "hq" to point to your
departmental page directory. Of course, use the <form>
tag above verbatim.
|