function validateDL() {
  var els = document.download.elements;
  
  for(var i=0; i < els.length; i++){
    if (els[i].type == 'text' && els[i].value == ''){
      alert('Please complete all fields.');
      return false;
    }
  }

  if (!utils.isEMailValid(els["email"].value)) {
    alert("Email address is invalid.");
    els["email"].select();
    return false;
  }
  
  return true;
}