What is the suggested way to cover the following requirement?

After the install folder has been selected in LOOP WIZARD, a specific file is version checked in the selected folder. If the version is incorrect the user has to repeat the selection of the install folder.

I currently use two LOOP WIZARDS in a LOOP, such as:

Define Wizard Dialog #1 (Welcome)
LOOP
Define Wizard Dialog #2 (Select Install Folder)
LOOP WIZARD
END
IF MyVersionCheck fails
CYCLE LOOP
END
Define Wizard Dialog #1 (Ready to Install)
LOOP WIZARD
END
BREAK CYCLE
END


Is there an easier way to repeat a single Wizard Dialog inside the Wizard loop?

Thanks for any help.