function fieldSelected(highlight, obj) {
	if (highlight == true) {
		obj.style.backgroundColor = "#E3E8F5";
		obj.style.border = "1 solid #7F9DB9";
		obj.style.color = "#000000";
	} else {
		obj.style.backgroundColor = "";
	}
}

function clearFormField(defaultValue, obj) {
	if (defaultValue == obj.value) {
		obj.value = "";
	}
}
