* Method actionPerformed
*/
public void actionPerformedInBackground(ActionEvent e) {
URL url = LOADER.getResource(urlText);
BrowserPanel browserPanel = new BrowserPanel(url);
View view = viewContainer.createView(title);
view.setBody(browserPanel);
viewContainer.setCurrentView(view);
}