var bsdefaulttext = "Enter Search Terms";

function sboxclearer(box) {
	var thebox = document.getElementById(box);
	if (thebox.value == bsdefaulttext) {
		thebox.value = "";
	}
}

function sboxunclearer(box) {
	var thebox = document.getElementById(box);
	if (thebox.value == "") {
		thebox.value = bsdefaulttext;
	}
}
