Some points:
Changing your regExp from /^\s+/ to /^\s+|\s+$/g might be useful as it will trim trailing whitespace, too.
Change if (text_input === "") { to if (removeSpaces === "") { otherwise you get horrible results if you just enter a space.
Why are you declaring the functions highlight, removeSpan and addSpan when you only call them in one place? Just put their code where you call them (unless, of course, you want to use them elsewhere, too).
Why are you creating the temporary vars newstr and newstr2? Just reassign the result of the anchor_text.replace() call back into anchor_text.
Pass regexes in the replace function instead of strings.
Implementing all of these changes, we get:
document.getElementById('check-list').onclick = function() {
text_input = document.search.search_list.value.replace(/^\s+|\s+$/g, "");
if (text_input.length) {
var anchor = document.getElementById('results').getElementsByTagName('a');
var alength = anchor.length;
for (var x = 0; x < alength; x++) {
var anchor_text = anchor[x].innerHTML;
anchor_text = anchor_text
.replace(/<span class="highlight">/gi, "")
.replace(/<\/span>/gi, "");
anchor[x].innerHTML = anchor_text;
var re = new RegExp(text_input, "gi");
if (anchor_text.search(re) !== -1) {
anchor_text = anchor_text.replace(re, "<span class='highlight'>$&</span>");
anchor[x].innerHTML = anchor_text;
}
}
}
}