function clearInputIf(el, string) {
	if (el.value == string) {
		el.value = "";
	}
};

function fillInputWith(el, string) {
	if (el.value == "") {
		el.value = string;
	}
};
