LESSON 5 RECAP:

        Here's what the entire "login" routine might look like
according to the flowchart:

{:LOGIN}
     {CALO login,sendesc,Press <ESC> key}
     {CALO login,send_cr,More?}
     {LOOK first name?}  {SEND Jim|}
     {LOOK last name?}   {SEND Bennett|}
     {LOOK password?}    {SEND mypass}
.
.
.
{:SENDESC}
     {SEND ^[} {RETU}
{:SEND_CR}
     {SEND |}  {RETU}
---------------------

I've chosen to use a "hard" LOOK for first name, last name, password
because I _know_ that these prompts will _always_ be received from
the BBS when I make a connection.

Jim
