Launching a pop up window from another pop up windows

Is it possible to launch a pop up window from another pop up window?
i have an index page that launch a pop up window with my site on and it is all pictures. if you click on the pics you can actually enlarge 'em and i am doing that with the chromeless tutorial that i got on kirupa but on pc internet explorer 6
instead of opening onthe actual size i want it goes full screen.
thanks a lot for your help
massimo

This is just a guess, because I’ve only tried once to pop open multiple windows and ran into this problem. The javascript that you are probably using renames the pop up window in windows. You need to have unique names for each popup. If you don’t nothing will happen beyond the first popup.
As for making a window go full screen, Digitalosophy (if you see this digital, you get credit again!!), you can use this javascript in the popup itself:


<script language="javascript">
this.moveTo(0,0);
this.resizeTo(screen.availWidth,screen.availHeight);
</script>

Thanks a lot for the help.
Massimo