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;
        }
        else if(document.searchForm.searchOption[1].checked)
        {       
                this.window.location = "http://news.beloblog.com/cgi-bin/mt/mt-search.cgi?search=" + searchText + "&IncludeBlogs=1122,1088,1141,1117,1107,1159,1140,1160,1138,1118,1121,1123&limit=100";
                return false; //1122 MUST BE FIRST in the list
        }
        return true;
}