debug = "false";

function aulUpdateTxtElem(obj, strTxt) {
	if(obj.value == strTxt) {
		obj.value='';
		obj.style.color=(obj.style.color==""?"#000000":"");
	}
	else if(obj.value == '') {
		obj.value = strTxt;
		obj.style.color=(obj.style.color==""?"#cccccc":"");
	}// else user entered something, leave it alone
}


if (debug == "true") {
	alert('fieldlabels.js v1');
}

