// CLEAR THIS INPUT FIELD
function clearInput(theID) {
     if (theID.value == theID.defaultValue) {
         theID.value = ""
     }
     theID.className = 'inFocus'
 }
function loseFocus(theID) {
     theID.className = ''
}