function check(Bonus) {
if (Bonus.item1.checked == true && Bonus.policy1.checked == false )
  {
    alert("You must agree to the Terms to download this item.");
    return (false);
  }
if (Bonus.item2.checked == true && Bonus.policy2.checked == false )
  {
    alert("You must agree to the Terms to download this item.");
    return (false);
  }
if (Bonus.item3.checked == true && Bonus.policy2.checked == false )
  {
    alert("You must agree to the Terms to download this item.");
    return (false);
  }
   if (Bonus.name.value == "")
  {
    alert("Please do us the courtesy of providing your real name.");
    return (false);
  }
if (!(/^[A-Z]|[a-z]/).test(Bonus.name.value)) {
    alert("Please do us the courtesy of providing your real name.");
  return(false);
}
   if (Bonus.title.value == "")
  {
    alert("Please let us know your company, title and division. This information helps us to provide information best suited to your needs.");
    return (false);
  }
 if (!(/^[A-Z]|[a-z]\w{3,40}/).test(Bonus.company.value)) {
    alert("Please let us know your company, title and division. This information helps us to provide information best suited to your needs.");
    return (false);
  }
   if (Bonus.division.value == "")
  {
    alert("Please let us know your company, title and division. This information helps us to provide information best suited to your needs.");
    return (false);
  }
   if (Bonus.address.value == "")
  {
    alert("Please give your complete mailing address. We may use this information to send you valuable materials. Your address will not be shared wtih third parties.");
    return (false);
  }
   if (Bonus.city.value == "")
  {
    alert("Please give your complete mailing address. We may use this information to send you valuable materials. Your address will not be shared wtih third parties.");
    return (false);
  }
   if (Bonus.zip.value == "")
  {
    alert("Please give your complete mailing address. We may use this information to send you valuable materials. Your address will not be shared wtih third parties.");
    return (false);
  }
if (Bonus.phone.value == "") { 
  alert("Please enter your complete phone number as digits only, ommitting any hyphens, parentheses or leading + sign");
  return(false);
}

if (!(/[0-9]\w{7,12}/).test(Bonus.phone.value)) {
  alert("Please enter your complete phone number as digits only, ommitting any hyphens, parentheses or leading + sign");
  return(false);
}
if ((/[A-Z|a-z]/).test(Bonus.phone.value)) {
  alert("Please enter your complete phone number as digits only. Leading + sign can be used to indicate an international number.");
  return(false);
}
if (!(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(Bonus.email.value))){
	alert("Please check your email address for accuracy. Your download link will be sent to this email address.");
	return (false);
}
if (Bonus.email.value != Bonus.email2.value) {
	alert("Email addresses do not match. Please check and resubmit.");
    return (false);
}
}

