function findSearch()
{
        searchText = this.document.searchForm.search.value;
        words = searchText.split(" ");
        searchText = words.join("+");

        if(document.searchForm.searchOption[0].checked)
        {
                this.window.location = "http://www.inlandsocal.com/blcS.sc?search=" + searchText + "&cat=all";
                return false;
        }
        return true;
}
