super("URL Viewer");
this.getContentPane().add(BorderLayout.NORTH, theURL);
JScrollPane pane = new JScrollPane(theDisplay);
this.getContentPane().add(BorderLayout.CENTER, pane);
Panel south = new Panel();
south.add(loadButton);
this.getContentPane().add(BorderLayout.SOUTH, south);
theURL.addActionListener(this);
loadButton.addActionListener(this);
this.setLocation(50, 50);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.pack();