function refill(text, obj) {
	if (obj.value == '') {
		obj.value= text;
	}
}

function resett(text, obj) {
	if (obj.value == text) {
		obj.value= '';
	} else obj.select();
}
