/* is checkbox checked? */
function checkIt(healthForm) {
	if ( healthForm.checkbox_disclaimer.checked == false ) {
		alert ('You must accept the authorization to continue.');
		return false;
	} else { 	
		return true;
	}
}
