Launching an applet from within another applet

How do I launch a second applet that will be viewed in an appletviewer from within another applet? Basically what I want to have happen is that when a certain point comes in my game, the new applet will launch and it can take user input using the JComponents. Trying to add/remove JComponents from an already existing applet is nearly impossible if even possible at all without major issues as I found out the hard way. Anyone know of any classes/methods I can use to launch a second applet to be viewed outside of the original applet from within the current applet and use data from the original in the new? Boy that last sentence was a mouthful :-X. I tried instantiating a new class that extends Applet and executing it at the proper time in my code but that didn’t work, so I am not sure how to proceed, any advice would be appreciated!

You can’t launch a second applet, but you can create a new JFrame.