function clearInputField(obj, text) {
	if (obj.value==text) {
		obj.value = "";
	}
}

function refillInputField(obj, text) {
	if (obj.value=="") {
		obj.value = text;
	}
}