function clearField(el) {
	el.value = "";
}

function fillField(el) {
	el.value = "Search CLT Web...";
}

//function clearField(thisfield, tempTxt) {
//	if (thisfield.value == tempTxt) {
//		thisfield.value = "";
//	}
//}
//
//function fillField(thisfield, tempTxt) {
//	if (thisfield.value == "") {
//		thisfield.value = tempTxt;
//	}
//}
