// Chat Touring
// Copyright (c) 1996 by Paul Burchard
// Distributed under the terms of the GNU Library General Public License

import java.applet.*;
import java.awt.*;
import ChaTour;

public class ChaTourExpress extends Applet {
	ChaTour chatPanel;
	public void init() {
		setLayout(new FlowLayout());
		add("chat_tour", (chatPanel = new ChaTour(this, true)));
	}
	public String getAppletInfo() {
		return ChaTour.infoString;
	}
	public void start() {
		super.start();
		chatPanel.start();
	}
	public void stop() {
		chatPanel.stop();
		super.stop();
	}
}
