function clearInput(id, txt) {
	var f = document.getElementById(id);
	if (f.value == txt) {
		f.value = '';
	}
	else if (f.value == '') {
		f.value = txt;
	}
}