<!-- // Activate HTML comment cloak

// Validate the input form.
function formCheck(theForm) {
  if(IsEmpty(theForm.txtFirstName) == true) {
    alert("Please enter your first name.");
    theForm.txtFirstName.focus();
    return false;
  }

  if(IsEmpty(theForm.txtLastName) == true) {
    alert("Please enter your last name.");
    theForm.txtLastName.focus();
    return false;
  }

  if(IsEmpty(theForm.txtEmail) == true) {
    alert("Please enter your Email address.");
    theForm.txtEmail.focus();
    return false;
  }

  if(IsNoSelection(theForm.selInterests) == true) {
    alert("Please enter your Reason for Contacting Us.");
    theForm.selInterests.focus();
    return false;
  }

  return true;
}

// Deactivate HTML comment cloak -->

