function verify_change_note(event) {
 //    if (this.id == "fsdperson-base-edit"{
 //       return true;
 //    }
 //    else {
        if (this.cmfeditions_version_comment) {
            if (this.cmfeditions_version_comment.value=="") {
              if (this.form_submit.value == "Saving") {
                alert("Change Notes: This field must be filled out for your edits to take place.");
                jq("input[@name=form_submit]", this).removeClass("submitting");
                this.form_submit.value = "Save";
                return false;
              }
              else {
                return true;
             }
            }
            else {
                return true;
           }
        }
        else {
                return true;
        }
  //   }
}

jq(document).ready(function(){
    jq("input[@name=form_submit]").click(function() {
  this.value = "Saving";
});
    jq("form[@name=edit_form]").submit(verify_change_note);
});
