
// Functions to clear and reset text field values 
function clearMe(fe,txt){
	// check to see that the form element is the default text
	if (fe.value == txt){
		// clear the default text
		fe.value = "";
	}
	return;
}
function resetMe(fe,txt){
	// check if the form element is empty
	if (fe.value == ""){
		// set the default text
		fe.value = txt;
	}
	return;
}