
	  function clearValue(theObj, theVal) {
	  if (theObj.value == theVal) {
	  theObj.value = '';
	  }
	  }
	  function fillValue(theObj, theVal) {
	  if (theObj.value == '') {
	  theObj.value = theVal;
	  }
	  }
