
function clearInput(theInput,theValue) {
  if(theInput.value==theValue) theInput.value="";
}

function fillInput(theInput,theValue) {
  if(theInput.value=='') theInput.value=theValue;
}
