Is there a more efficent way to call KIX files/scripts that have the same group name?

For example, I am currently using the following logic to call external scripts:

If INGROUP ("SF1")
CALL "SF1.KIX"
ENDIF
If INGROUP ("SFACCT")
CALL "SFACCT.KIX"
ENDIF
If INGROUP ("SFXCOM")
CALL "SFXCOM.KIX"
ENDDIF

Is there an easier way? Couldn't I just make an array with that would call a kix script if it matched an NT group name?

One line would be much better than 50.