function RTIcheck(RTIEval) {
   if (RTIEval.name.value == "")
  {
    alert("Please do us the courtesy of providing your real name.");
    return (false);
  }
if (!(/^[A-Z]|[a-z]/).test(RTIEval.name.value)) {
    alert("Please do us the courtesy of providing your real name.");
  return(false);
}
   if (RTIEval.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 (RTIEval.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 (!(/^[A-Z]|[a-z]\w{3,40}/).test(RTIEval.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 (RTIEval.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 (RTIEval.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 (RTIEval.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 (RTIEval.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 (RTIEval.phone.value == "") { 
  alert("Please enter your phone number as digits only, ommitting any hyphens, parentheses or leading + sign");
  return(false);
}
if (!(/[0-9]\w{7,12}/).test(RTIEval.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(RTIEval.phone.value)) {
  alert("Please enter your 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(RTIEval.email.value))){
	alert("Please check your email address for accuracy. Your download link will be sent to this email address.");
	return (false);
}
if (RTIEval.email.value != RTIEval.email2.value) {
	alert("Email addresses do not match. Please check and resubmit.");
    return (false);
}
}

