 function clearField(theText) {
     if (theText.value == theText.defaultValue) {
         theText.value = ""
     }
 }

function restoreField(theText) {
	if (!theText.value) {
		theText.value = theText.defaultValue
	}
}