
function ta_onblur(theTA) {
		if (theTA.value == ""){
			 theTA.value = "Notes (Optional)";
		}
}

function ta_onfocus(theTA) {
		if (theTA.value == "Notes (Optional)"){
			 theTA.value = "";
		}
}

