import java.awt.*;
import java.applet.*;
                            
public class Applet1 extends Applet
{

	Frame f=new Frame("Ventana Independiente");
	Button abrir=new Button("Abrir");
	Button cerrar=new Button("cerrar");
	TextArea cuadro=new TextArea();	
	MenuBar barra=new MenuBar();
	Menu fuentes=new Menu("fuentes");
	Menu colores=new Menu("colores");
		
	
		
		
		
	
	public void init()
	{
		setBackground(Color.blue);
		setForeground(Color.yellow);
		
		add(abrir);add(cerrar);
	f.add("Center",cuadro);
		resize(300,300);
	
	fuentes.add("Times");
	fuentes.add("Courier");
	fuentes.add("No habilitar");				 
	colores.add("Rojo");
	colores.add("Azul");
	colores.add("Verde");
	barra.add(fuentes);
	barra.add(colores);
	f.setMenuBar(barra);	
		
		
	}
		public boolean action(Event e,Object o)
		{
			if(e.target==abrir)
			{
				f.resize(300,300);
				f.show();
				return true;
			}
			if(e.target==cerrar)
			{
				f.dispose();
				return true;
			}
										  
					
			   
			return false;		
			   
	
}
}