import java.applet.*;
import java.awt.*;
import java.net.*;

public class HTMLSeite_Frame extends Applet {
	
  URL url1;
  String str = "http://www.selfjava.de";

public boolean action(Event evt, Object arg){
  try {
    url1 = new URL(str);
    getAppletContext().showDocument(url1, "inhalt");
  }
  catch(MalformedURLException e) {
    System.out.println("Error " + e );
  }	
  return true;
}
	
public void init() {
  add(new Button("URL"));
}

}
