#include <tos.h>
#include <string.h>

void main (int argc, char *argv[])
{ int 	pipe;
	long 	pipe_status =0;
				
	pipe =(int)Fopen ("U:\\PIPE\\POPUP",FO_WRITE);
	
	if (pipe <= 0)
	{
		return;
	}
	
	pipe_status = Fwrite (pipe,(strlen(argv[1])+1),argv[1]);
	
	if ( pipe_status != (strlen(argv[1])+1) )
	{	
		return;
	}

	Fclose (pipe);
	
	return;
}