function getFocus(inputEl) { 
  if (inputEl.value === inputEl.defaultValue) { 
    inputEl.value = ""; 
  } 
} 
function loseFocus(inputEl) { 
  if (inputEl.value === "") { 
    inputEl.value = inputEl.defaultValue; 
  } 
} 
