
 function doClear(theText) 
 {
     if (theText.value == theText.defaultValue)
     {
         theText.value = ""
         theText.style.fontStyle='normal'
     }
 }

