
	function mark_field(field) {
		field.style.backgroundColor='#ffffcc';
		field.onfocus=function() { field.style.backgroundColor='#eeeeee'; };
	}	

	function clear_field(field) {
		field.style.backgroundColor='#eeeeee';
	}	

