<!--

/* when called the script sets all the checkboxes 'field' to the state 'state' (checked / not checked) */
function check(field, state) {
	for (i = 0; i < field.length; i++) {
		field[i].checked = state; 
	}
	return; 
}

-->

