 function clearfield(theText) {
 
     if (theText.value == theText.defaultValue) {
         theText.value = ""
     }
 }

 function blurfield(theText) {

 	if (theText.value == '') { 
		theText.value = theText.defaultValue; 
	}
}
