I know there are many questions of this ilk with many answers.
I know that I can use
var popup = window.open('');
and can later use
popup.close();
to close that window.
However, is there a way to close all children without having to store the window.open result?
That is, could I do
window.open('1');
window.open('2');
window.open('3');
and then somehow do a global "Close" call that will close these three windows?
If not, could I accomplish it by using the following code to do the open?
window.open('1','window1');
window.open('2','window2');
window.open('3','window3');