/* CLEAR FORM FIELD */

	function clearMe (eEl, sDefault) {
		if (eEl.value==sDefault)
			eEl.value='';
	}
