function downloadSTYROFOAM() {
  var theEmail = document.getEmail.email_record;
  if (isEmpty(theEmail.value)) {
    alert('STYROFOAM Free Download\n\nPlease enter your email in the box provided');
	theEmail.focus();
  }
  else if (!checkEmail(theEmail.value)) {
    alert('STYROFOAM Free Download\n\nPlease enter a valid email in the box provided');
	theEmail.focus();
  }
  else {
    document.getEmail.submit();
  }
}