function sendresults() {
	var term = document.getElementById('term');
	if (term.value.length > 2) {
		window.location.href = '/funeralnotices/search/' + encodeURI(term.value);
	}
	else {
		alert('Search term too small.\nPlease try again with different search value.');
	}
}


