<!--                                                                                                                                            
 
var search_htm_url = "search.htm";                                                                                                                                                 
 
function searchPage() {                                                                                                                                                 
 
if ((document.searchpage.keyword.value.length == 0)                                                                                                                                                 
 
|| (document.searchpage.keyword.value == " ")) {                                                                                                                                                 
 
alert("PLEASE FILL IN THE KEYWORDS !");                                                                                                                                                 
 
} else {                                                                                                                                                 
 
sel = document.searchpage.and_or.selectedIndex;                                                                                                                                                 
 
location.href = search_htm_url + "?"                                                                                                                                                 
 
+ escape(document.searchpage.keyword.value)                                                                                                                                                 
 
+ (sel==0?"&and":(sel==2?"&exact":"&or"));                                                                                                                                                 
 
}                                                                                                                                                 
 
return false;                                                                                                                                                 
 
}                                                                                                                                                 
 
document.write('<form name="searchpage" onSubmit="return searchPage()">'                                                                                                                                                 
 
+'<input type="text" size=22 name="keyword"> '                                                                                                                                                 
 
+'<input type="button" value="Search" onClick="searchPage()"><br>'                                                                                                                                                 
 
+'<select name="and_or" size=1><option>find all words (AND)<option>find any word '                                                                                                                                                 
 
+'(OR)<option>exact match</select></form>');                                                                                                                                                 
 
// -->