function handleSearch() {
	SearchResults.instance().getSearchResultsCount(document.getElementById("SEARCH_VALUE").value);
}
function hideSearchResults() {
	document.getElementById("SEARCH_RESULTS").style.display = "none";
}
function showSearchResults() {
	document.getElementById("SEARCH_RESULTS").style.display = "inline";
}
function putSearchText(text) {
	document.getElementById("SEARCH_RESULTS_TEXT").innerHTML = text;
}
function putSearchResultsCount(count) {
	document.getElementById("SEARCH_RESULTS_COUNT").innerHTML = count;
}
function modifySearchText() {
	document.getElementById("SEARCH_VALUE").focus();
	document.getElementById("SEARCH_VALUE").select();
}
function goToFullSearchResults() {
	window.location = BASE_URL + LANG + "/searchresults/" + document.getElementById("SEARCH_RESULTS_TEXT").innerHTML + ".html";
}
