<!--

function clearForm() {
	document.search_form.search_term.value = "";
}

function unForm() {
	document.search_form.search_term.value = "Enter Keyword";
}

function clearForm1() {
	document.myform.surname.value = "";
}

function unForm1() {
	document.myform.surname.value = "Surname";
}

function clearForm2() {
	document.myform.name.value = "";
}

function unForm2() {
	document.myform.name.value = "Name";
}

function clearForm3() {
	document.myform.email.value = "";
}

function unForm3() {
	document.myform.email.value = "Email";
}

//-->