At the moment the search facility has the option of searching for 'all' words, or 'any' words.
How do I take that option out so it just searches for all words?
I'm guessing it's this bit, but not sure how to remove the options and set the value...
	
							
						
					How do I take that option out so it just searches for all words?
I'm guessing it's this bit, but not sure how to remove the options and set the value...
Code:
	
	NETQUOTEVAR:SEARCHCOMBINE
            <input type=RADIO name="TB" CHECKED value="A">
            NETQUOTEVAR:SEARCHANDSTRING 
            <input type=RADIO name="TB" value="O">
            NETQUOTEVAR:SEARCHORSTRING NETQUOTEVAR:SEARCHCOMBINEINFO
            <script language="JavaScript">
				<!--
				for (nIndex = 0; nIndex < document.forms.length; nIndex++)
			 	  {
			 	  if (document.forms[nIndex] && document.forms[nIndex].SS)
			 	     {
            	   document.forms[nIndex].SS.focus();
			      }
			      }
			   // -->
			   </script>

 All you need to do is replace these lines :
 All you need to do is replace these lines :
Comment