function contribution_Validator(theForm)
{
  if (theForm.contributionamount.value == "" && theForm.monthlyamount == "")
  {
    alert("Please enter a contribution amount.");
    theForm.contributionamount.focus();
    return (false);
  }

  if (theForm.companymatching.value != "" && theForm.companyname == "")
  {
    alert("Please enter the name of your company for matching funds.");
    theForm.companyname.focus();
    return (false);
  }

  if (theForm.acknowledgepermission.value == "true" && theForm.membername == "")
  {
    alert("Please enter the name you would like to be recognized.");
    theForm.companyname.focus();
    return (false);
  }
  
  return (true);
}
