function valbutton(thisform) {
  myOption = -1;
	for (i=thisform.aALUnq.length-1; i > -1; i--) {
		if (thisform.aALUnq[i].checked) {
			myOption = i; i = -1;
		}
	}
	if (myOption == -1) {
		alert("You must select one of the Membership Options.");
		return false;
	}
	if (thisform.agreeTerms.checked == false) {
		alert ('You must agree to the Terms and Conditions!');		
		return false;		
	}
  return true;
// place any other field validations that you require here
//thisform.submit(); // this line submits the form after validation
}

function valCCbutton(thisform) {
  myOption = -1;
  for (i=thisform.cc_to_use.length-1; i > -1; i--) {
    if (thisform.cc_to_use[i].checked) {
      myOption = i; i = -1;
    }
  }
  if (myOption == -1) {
    alert("You must select which credit card to use.");
    return false;
  }
  return true;
// place any other field validations that you require here
//thisform.submit(); // this line submits the form after validation
}
