// moved out of the header to maximize SEO
function clearText(theControl) {
	if (theControl.value == 'SEARCH'){
		theControl.value = '';
	}
}

function validateSearchForm(theForm){
	if (theForm.search_text.value == 'SEARCH' || theForm.search_text.value == ''){
		alert('Please enter a word or phrase to search for.');
		return false;
	} else {
		return true;
	}
}
