function validCheckbox (isChecked) {
	if (! isChecked) {
		return false; 
	} 
	return true;
}
