<!--
var TRange=null;
var finds=0;
count=0;
function findString(str) {
  if (parseInt(navigator.appVersion)<4) return;
  var strFound;

  if (navigator.appName=="Netscape") {    // NAVIGATOR-SPECIFIC CODE
         if(str==''||str==null){alert('Enter a term to search for');return}
         strFound=parent.frame3.find(str);
         if(strFound)finds++;
         //else finds=0;
         if(!strFound && finds>0) {
             strFound=parent.frame3.find(str,0,1);
             while(parent.frame3.find(str,0,1)){
                 continue;
             }
         alert("Search for '"+str+"' completed");finds=0;
         parent.frame1.f1.t1.value='';  
         //parent.frame1.f1.t1.focus();  
         return;
         }
         if(finds==0){
             alert('"'+str+'" not found!');
             //parent.frame1.f1.t1.focus();  
         }
         if(finds>0&&!strFound){
             alert("Search for'"+str+"' completed");

         }
  }

  if (navigator.appName.indexOf("Microsoft")!=-1) {    // EXPLORER-SPECIFIC CODE
         if(str==''&& str!=null){
             alert('Enter a term to search for');
             parent.frame1.f1.t1.value='Find a term';
             return;
         }
         if (TRange!=null) {   //processes remainder of finds after first find (below)
             TRange.collapse(false);
             strFound=TRange.findText(str); 
             if(strFound)TRange.select();
             else {
                alert("Search for '"+str+"' completed.");
                TRange=null;
                parent.frame1.f1.t1.value='Find a term';
                return;
             }
         }
         if (TRange==null || strFound==0) {   //processes first find
             TRange=parent.frame3.document.body.createTextRange();
             strFound=TRange.findText(str);
             if (strFound) TRange.select(); 
         }
         if (!strFound) { 
             alert ('"'+str+'" not found!');
             TRange=null;
             return;
         }
  }
}
//-->