// this is Stuart's to do the text box onclick
function doClear(theText) {
     if (theText.value == theText.defaultValue) {
         theText.value = ""
     }
}
