function checkCheckBoxes(theForm) {
if (theForm.TERMS.checked == false) 
	{
	alert ('You need to agree to the fluidstate.com legal statement');
	return false;
	} else { 	
	return true;
	}
}
