function clear_field(id, text) {
	if (id.value == text) {
		id.value = '';
		id.style.color = '#555555';
	}
}
function unclear_field(id, text) {
	if (id.value.length == 0) {
		id.value = text;
		id.style.color = '#777777';
	}
}


