/***********************************************

UTILITY FUNCTIONS

************************************************/


// clear the default value of a textfield
function clearDefault(el) {
  if (el.defaultValue==el.value) el.value = "";
}

// restore the default value of a textfield
function restoreDefault(el, phrase) {
  if (el.value=='') el.value = phrase;
}


