function clickclear(thisfield) {
	if (thisfield.value == "Search term") {
		thisfield.value = "";
	}
}
function clickrecall(thisfield) {
	if (thisfield.value == "") {
		thisfield.value = "Search term";
	}
}
