function ClearBox(theText) 
{ // clears what's in a text input box
     if (theText.value == theText.defaultValue)
 {
         theText.value = ""
     }
 }