function checkContact() {
  if (document.getElementById("Contact").first.value == '') {
    alert('Please enter information in the "First Name" field');
    return false;
  }
  if (document.getElementById("Contact").last.value == '') {
    alert('Please enter information in the "Last Name" field');
    return false;
  }
  if (document.getElementById("Contact").email.value == '') {
    alert('Please enter information in the "E-mail Address" field');
    return false;
  }
  if (document.getElementById("Contact").category.value == '') {
    alert('Please select from the "Message Category" field');
    return false;
  }
  if (document.getElementById("Contact").recipients.value == '') {
    alert('Please select from the "Intended Recipients" field');
    return false;
  }
  if (document.getElementById("Contact").feedback.value == '') {
    alert('Please enter information in the "Message" field');
    return false;
  }
  if (document.getElementById("Contact").code.value == '') {
    alert('Please enter the verification code');
    return false;
  }
  return true;
}

