/* info.c
	display copyright notice and distribution stuff
	coded 6.12.90 by hoover
*/

extern struct IntuiMessage *msg, *GetMsg();
#include <exec/types.h>
#include <intuition/intuition.h>
#include "info.h"

struct Window *iw, *OpenWindow();
void info()
{
	iw = OpenWindow(&infowindow);
	if(!iw)
		close_all("Could not open info window.",1L);
	PrintIText(iw->RPort, &infotext2,0L,0L);

	WaitPort(iw->UserPort);
	msg = GetMsg(iw->UserPort);
	ReplyMsg(msg);
	CloseWindowSafely(iw,NULL);
	return;
	}

	
