function checkCheckBoxes(theForm) {
if (theForm.TERMS.checked == false) 
	{
	alert ('You need to agree to the fabfoodpix.com terms and conditions of usage');
	return false;
	} else { 	
	return true;
	}
}