 function doClear(theText) 
{
     if (theText.value == theText.defaultValue)
 {
         theText.value = ""
     }
 }
 function hideElementByDisplay(obj) {
		document.getElementById(obj).style.display = "none";
	}
