// a couple functions for textboxes - to swap the color and remove/replace any default text

function TextboxOn(el, val) {
	if (el.value == val) {
		el.value = "";
	}
	el.style.color = "#10a69c";
}

function TextboxOff(el, val) {
	if (el.value == "") {
		el.value = val;
		el.style.color = "#aaa39f";
	}
}