function checkForm(theForm) {

      if (theForm.cell.value == "enter cell phone number" || theForm.cell.value == "" || theForm.cell.value == null || theForm.cell.value.charAt(0) == ' ') {
        alert("B-Active Sports || please enter your cell phone number")
        theForm.cell.focus()
        return false;
      }

      if (theForm.email.value == "enter email address" || theForm.email.value == "" || theForm.email.value == null || theForm.email.value.charAt(0) == ' ') {
        alert("B-Active Sports || please enter your e-mail address")
        theForm.email.focus()
        return false;
      }
      <!-- Check if EMAIL is Valid -->
      validRegExp = /^[^@]+@[^@]+.[a-z]{2,}$/i;
      // search email text for regular exp matches
      if (theForm.email.value.search(validRegExp) == -1) {
        alert("B-Active Sports || please enter a valid e-mail address");
        theForm.email.focus()
        return false;
      }
	  
	  if (theForm.email_confirm.value != theForm.email.value) {
		alert ("B-Active Sports || Email addresses do not match - please re-enter!");
        theForm.email_confirm.focus()
        return false;
      }
      return true;
    }
