var subFormName = document.getElementById('subForm');

function verifyRequired4059() {

  if (subForm["cm-zvykl-zvykl"].value == "") {

    subForm["cm-zvykl-zvykl"].focus();

    alert("The Email field is required.");

    return false;

  }

  if (subForm["cm-zvykl-zvykl"].value == "Email") {

    subForm["cm-zvykl-zvykl"].focus();

    alert("The Email field is required.");

    return false;

  }

  if (subForm["cm-name"].value == "") {

    subForm["cm-name"].focus();

    alert("The First Name field is required.");

    return false;

  }

 if (subForm["cm-name"].value == "Name") {

    subForm["cm-name"].focus();

    alert("The Name field is required.");

    return false;

  }

return true;

}
