function clear_field(id, text) {
	if (id.value == text) {
		id.value = '';
	}
}
function unclear_field(id, text) {
	if (id.value.length == 0) {
		id.value = text;
	}
}


