Changed the Javascript function to this:
function CheckSearchInput() [
	if (document.getElementById("txtResearch").value == "") [
		alert("Please Enter A Name, A Member ID #, or A Social Security Number!");
            ]
	else [
                SearchResults.submit();
            ]
        ]
and changed the button from an "asp:button" to an HTML button. Now I'm getting the desired actions.