import java.applet.Applet;
import netscape.javascript.*;
public class AppletTeste extends Applet 
{
   public void init() {

      // Get the JSObject representing the applet's browser window.
      JSObject win = JSObject.getWindow(this);

      // Run JavaScript with eval(). Careful with those nested quotes!
      win.eval("teste( 'Teste Java x JavaScript' );");
      
   }
}
