JInternalFrame webBrowser1InternalFrame = new JInternalFrame("Web Browser 1");
webBrowser1InternalFrame.setBounds(10, 10, 400, 280);
webBrowser1InternalFrame.setResizable(true);
webBrowser1InternalFrame.setVisible(true);
JWebBrowser webBrowser1 = new JWebBrowser(JWebBrowser.proxyComponentHierarchy());
webBrowser1.navigate("http://djproject.sf.net");
webBrowser1InternalFrame.add(webBrowser1, BorderLayout.CENTER);
desktopPane.add(webBrowser1InternalFrame);
// Flash Player internal frame
JInternalFrame flashPlayerInternalFrame = new JInternalFrame("Flash Player");
flashPlayerInternalFrame.setBounds(100, 100, 400, 280);