
	function light(field) {
		document.getElementById(field).style.background = '#fffac2';
	}
	function dim(field) {
		document.getElementById(field).style.background = '#fff';
	}

