Multiple Radio Button Selection Check
I have the following form and code working as I would like but would like to know how to improve the code for a more involved form. The code checks to see that the radio buttons have a selection and then unhides the signature block and hides the signature button for the respective column. The more involved form will have 4 columns and at least 10 radio buttons for each column. The listed code is set to a Mouse Enter trigger of the Engineering Signoff button.

var EN1 = this.getField("EN1").value;
var EN2 = this.getField("EN2").value;
var EN3 = this.getField("EN3").value;
if ((EN1=="Off") || (EN2=="Off") || (EN3=="Off")) {
this.getField("ENSig").display = display.hidden
this.getField("ENChk").display = display.visible
}
else {
this.getField("ENSig").display = display.visible
this.getField("ENChk").display = display.hidden
}
