<!--
function clearBG(id) { document.getElementById(id).style.backgroundImage="none"; }

function CheckEmpty(id) {
	inputval=document.getElementById(id).value;
	if (inputval=="") {
		if (id=="searchbox-firstname") {
			document.getElementById(id).style.backgroundImage="url('http://www.voght.org/genealogy/e107_themes/spvgen/images/searchbox-firstname.png')";
		} else {
			document.getElementById(id).style.backgroundImage="url('http://www.voght.org/genealogy/e107_themes/spvgen/images/searchbox-lastname.png')";
		}
	}
}
//-->
