<%
Dim ltimestart, ltimeend
ltimestart = Timer
If sSearchTerms <> "" Then
If sSearchInSection = "" Or sSearchInSection = "0" Then
Call Process_Dirs("",1)
Else
Call Process_Dirs(sSearchInSection,2)
End If
If bMatchesMade Then
Call Shell_Sort(sSearchResults)
Call Show_Results()
Else
Response.Write ResultHead_HTML(sSearchTerms,0,-1,-1)
Response.Write ResultFoot_HTML("Sorry, no results were found matching your search.
To get the best possible search results, try the following tips:- Check spelling - Make sure your search terms are spelled correctly. The search engine will attempt to find words that sound similar to your search terms, but it is always best to spell the search terms correctly.
- Use multiple words - Use multiple words when performing your search. Using more words will return more refined results than searching for a single word.
- Use similar words - The more similar words you use in a search, the more relevant your results will be.
")
End If
Else
Response.Write ResultHead_HTML(sSearchTerms,0,-1,-1)
Response.Write ResultFoot_HTML("Please enter your search terms in the search box above and click 'Go'.")
End If
ltimeend = Timer
%>
|