You can use Get Window List to get list of all the open windows inside the project and them loop over them using For Each loop
Names Default To Here(1);
project = Open("$SAMPLE_PROJECTS\Big Class.jmpprj");
reps = Get Window List(Project(project), Type("Reports"));
For Each({rep}, reps,
Show(rep << get window title);
);
-Jarmo