I found the problem and fixed it!
It was in inc_searchlog.asp.
On line 44 I had:
keywords = split(Request.Form("Search"), "")
It needed to be (notice the space between the quotes):
keywords = split(Request.Form("Search"), " ")
I used WinMerge to compare my file with the original. That is a cool program!<