function textSwitch(el, target, replace) {
	el = document.getElementById(el);
	if (el.value == replace || (replace && !el.value)) {
		el.value = target;
	}
}