Copying radio button status to another group
Hi, I have two similar section in document with free text fields and radio group.
I have button (right-up corner) after mouse up copy free text fields from left section to right.
I want to copy status of checkboxes too, how to do this? Below screen and button script.

this.getField("Imię i nazwisko Ubezpieczonego I").value = this.getField("Imię i nazwisko Ubezpieczającego").value;
this.getField("Seria i numer dokumentu Ubezpieczonego I").value = this.getField("Seria i numer dokumentu Ubezpieczającego").value;
this.getField("Kraj urodzenia Ubezpieczonego I").value = this.getField("Kraj urodzenia Ubezpieczającego").value;
this.getField("Obywatelstwo Ubezpieczonego I").value = this.getField("Obywatelstwo Ubezpieczającego").value;
