// Clears text box on entry
function doClear(theText) 
{
     if (theText.value == theText.defaultValue)
 {
         theText.value = ""
     }
 }

// Restores text box default value if empty
function doRestore(theText) {
	if (theText.value == "") {
		theText.value = theText.defaultValue;
	}
}
