/* clears the contents of the edit box on click if they are not the default value */
		function clearIt(objID, defaulText){ //1 visible, 0 hidden
	  		if(objID.value == defaulText)  // NN4
	  		{
				objID.value = "";
	  		}
		}

/* restores the original value of the text box on mouse out if nothing has changed */

		function restoreIt(objID, defaulText){
			if(objID.value == ""){
				objID.value = defaulText;
			}
		}