int start_task(string command; int wimpslot; int flags)

   * Parameters:

       command    - A *command to start up the task (a simple command, not
                    prefixed by *taskwindow).
       wimpslot   - The task's initial wimpslot in K (*not* bytes).

   * Returns: A script task handle

Starts a script task.


void kill_task(int handle)

   * Parameters:

     handle       - The handle of the task to kill.

  terminates a Script task.


void data_to_task(int handle; string data)

   * Parameters:

     handle       - The handle of the task to which to send data.
     data         - The data to send.

   sends data to a script task. T the task it will appear as if the data had
been entered atthe keyboard.


Entry Points
------------

void task_output(int handle; string data)

   * Parameters:

     handle       - The handle of the task from which te data was received.
     data         - The data received.

   is called when a task owned by the script outputs data (to the task it will
apeear as if it is outputing to the screen).
