function showSearch() {
	document.getElementById("modalBackground").style.display = 'block';
	document.getElementById("searchBox").style.display = 'block';
}

function hideSearch() {
	document.getElementById("modalBackground").style.display = 'none';
	document.getElementById("searchBox").style.display = 'none';
}