// JavaScript Document
/* BASE JAVASCRIPT ACTION*/
function doClear(theText) {
     if (theText.value == theText.defaultValue) {
         theText.value = ""
     }
	 else if (theText.value == "") {
		 theText.value = theText.defaultValue
	 }
}