Go ahead.....

try out the search
function

<==========
 
   
How do I make my site searchable so a visitor can enter a word or phrase and find the pages where it appears?
 

Yes, but to do this, you'll need to purchase a separate software program,
SiteSearch Indexer. SiteSearch Indexer will index your site -- after you've published it on your PC or sent it to your Web server -- and create a JavaScript file that you can include in your "Other" subfolder by invoking "Add Misc. Files" on the "File" menu.

Once you've created the JavaScript index file, you can
place HTML code in a code cell that enables a visitor
to your site to conduct a Googlelike search of your
pages. (See the example at the right).

After entering a search word or phrase, a user can
choose whether to search for any of the words
entered, all the words, or the exact phrase. When
he/she clicks on the "Search" button, a page will
appear with the results of the search: a listing of
all pages on your site that contain the word, words,
or phrase. If a user clicks on a link on the search
results page, he or she will go to the page that
contains the search word(s) or phrase.

The HTML code that produced the search box on
the right is shown below:
  
   
 

Search this site

(Enter the word or phrase you want to search for in the field below, and click "Search")

  any words
  all words
  exact phrase

 
   
Close window 
<p align="center"><font face="Arial" size="3" color="#660033"><b>Search this site</b></font></p>
<font face="Arial" size="2">(Enter the word or phrase you want to search for in the field below, and click "Search")</font>
<form name="searchForm" action="other/searchresults.htm">
<input type="text" name="searchField" size="20"><br>
  &nbsp;<input type="radio" name="srcriteria" value="any" checked>&nbsp;<font face="Arial" size="2">any words</font><br>
  &nbsp;<input type="radio" name="srcriteria" value="all">&nbsp;<font face="Arial" size="2">all words</font><br>
  &nbsp;<input type="radio" name="srcriteria" value="phrase">&nbsp;<font face="Arial" size="2">exact phrase</font><br>
  <p align="center"><input type="Submit" name="Submit" value="Search"></p>
</form>