function clearSearch(element) {
	if (element.value == 'Search for the missing...') {element.value = '';}
}
function restoreSearch(element) {
	if (element.value == '') {element.value = 'Search for the missing...';}
}