function xcheckk(signup) {
   if (signup.name.value == "")
  {
    alert("Please do us the courtesy of providing your real name.");
    return (false);
  }
if (!(/^[A-Z]|[a-z]/).test(signup.name.value)) {
    alert("Please do us the courtesy of providing your real name.");
  return(false);
}
   if (signup.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 (!(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(signup.email.value))){
        alert("Please check your email address for accuracy. Your Members Only communications will be sent to this email address.");
        return (false);
}
if (signup.pwd.value != signup.pwdck.value) {
        alert("Your two passwords do not match. Please check and resubmit.");
    return (false);
}
}
