home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 December
/
simtel1292_SIMTEL_1292_Walnut_Creek.iso
/
msdos
/
procomm
/
pcpdial.arc
/
VERSA1-C.MNU
< prev
next >
Wrap
Text File
|
1988-01-18
|
27KB
|
603 lines
;VERSA1.MNU
SWITCH S1 ;Decision based on S1 (city code)
CASE "GAATL" ;All of the following 7 cases are identical.
GOTO GAATL ; Each branches to the correct menu in the file,
ENDCASE ; depending on the current city code.
CASE "MABOS"
GOTO MABOS
ENDCASE
CASE "OHCLV"
GOTO OHCLV
ENDCASE
CASE "MIDET"
GOTO MIDET
ENDCASE
CASE "CTHAR"
GOTO CTHAR
ENDCASE
CASE "FLMIA"
GOTO FLMIA
ENDCASE
CASE "NJNEW"
GOTO NJNEW
ENDCASE
DEFAULT ;If S1 is anything else, something is wrong
ASSIGN S9 "ERROR" ;Put "ERROR" in S9,
EXECUTE "VERSA.CMD" ; and go back to VERSA.CMD
ENDCASE
ENDSWITCH ;End of decision based on city code
GAATL:
CLEAR ;Clear screen
LOCATE 2,0 ;Locate cursor for menu drawing
MESSAGE " ╒════════╡ Atlanta BBS Directory (404) ╞════════╕"
MESSAGE " │ │"
MESSAGE " │ -Board- -SIG- │"
MESSAGE " │ │"
MESSAGE " │ < 1> GBBS │"
MESSAGE " │ < 2> Flagship BBS │"
MESSAGE " │ < 3> Atlanta PCUG Unprotects │"
MESSAGE " │ < 4> T. J.'s │"
MESSAGE " │ < 5> Kahn's BBS Artificial Intelligence │"
MESSAGE " │ < 6> Southside BBS │"
MESSAGE " │ < 7> Gumby's Place │"
MESSAGE " │ < 8> La Chateau │"
MESSAGE " │ < 9> │"
MESSAGE " │ <10> │"
MESSAGE " │ │"
MESSAGE " │ <G>o back to city selection │"
MESSAGE " │ │"
MESSAGE " ├────────────────────────────────────────────────┤"
MESSAGE " │ Enter 1-10 or other phone number: │"
MESSAGE " ╘════════════════════════════════════════════════╛"
LOCATE 20,52 ;Locate cursor for user input
GET S9 11 ;Get user input (11 characters)
SWITCH S9 ;Decision based on S9 (user input)
CASE "1" ;All of the following 10 cases are identical.
ASSIGN S2 "4576815" ; Each assigns the number of a BBS to S2 and the
;$ASSIGN S7 "COMMAND.VER" ; name of a "linked command file" to S7. If no
ENDCASE ; linked command file is to be used, then a
CASE "2" ; semicolon should be at the beginning of the
ASSIGN S2 "9346299" ; ASSIGN S7 line, or delete the line entirely.
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "3"
ASSIGN S2 "4330062"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "4"
ASSIGN S2 "3921756"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "5"
ASSIGN S2 "9346299"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "6"
ASSIGN S2 "7670092"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "7"
ASSIGN S2 "9396569"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "8"
ASSIGN S2 "9877940"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "9"
ASSIGN S2 "XXXXXXX"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "10"
ASSIGN S2 "XXXXXXX"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "D" ;If the user enters "D",
EXECUTE "VERSA.CMD" ; pass the parameter to VERSA.CMD
ENDCASE
CASE "E" ;If the user enters "E",
EXECUTE "VERSA.CMD" ; pass the parameter to VERSA.CMD
ENDCASE
CASE "G" ;If the user enters "G",
EXECUTE "VERSA.CMD" ; pass the parameter to VERSA.CMD
ENDCASE
DEFAULT ;Any other input should be a phone number,
ASSIGN S2 S9 ; so assign the input to S2
ENDCASE
ENDSWITCH ;End of decision based on user input
ASSIGN S9 "ACTIVE" ;We're ready to dial, so make S9 "ACTIVE",
EXECUTE "VERSA.CMD" ; and go back to VERSA.CMD
MABOS:
CLEAR ;Clear screen
LOCATE 2,0 ;Locate cursor for menu drawing
MESSAGE " ╒═════════╡ Boston BBS Directory (617) ╞═════════╕"
MESSAGE " │ │"
MESSAGE " │ -Board- -SIG- │"
MESSAGE " │ │"
MESSAGE " │ < 1> Boston Computer Society │"
MESSAGE " │ < 2> Alpha Computer Society │"
MESSAGE " │ < 3> Wonderland BBS │"
MESSAGE " │ < 4> Harvard BBS │"
MESSAGE " │ < 5> Microcom's MNP MNP Info │"
MESSAGE " │ < 6> Boston Fog │"
MESSAGE " │ < 7> PC Week FIDO │"
MESSAGE " │ < 8> The Billboard │"
MESSAGE " │ < 9> Northeastern Exchange │"
MESSAGE " │ <10> │"
MESSAGE " │ │"
MESSAGE " │ <G>o back to city selection │"
MESSAGE " │ │"
MESSAGE " ├────────────────────────────────────────────────┤"
MESSAGE " │ Enter 1-10 or other phone number: │"
MESSAGE " ╘════════════════════════════════════════════════╛"
LOCATE 20,52 ;Locate cursor for user input
GET S9 11 ;Get user input (11 characters)
SWITCH S9 ;Decision based on S9 (user input)
CASE "1" ;All of the following 10 cases are identical.
ASSIGN S2 "2373750" ; Each assigns the number of a BBS to S2 and the
;$ASSIGN S7 "COMMAND.VER" ; name of a "linked command file" to S7. If no
ENDCASE ; linked command file is to be used, then a
CASE "2" ; semicolon should be at the beginning of the
ASSIGN S2 "2292915" ; ASSIGN S7 line, or delete the line entirely.
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "3"
ASSIGN S2 "6653796"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "4"
ASSIGN S2 "4984379"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "5"
ASSIGN S2 "7699358"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "6"
ASSIGN S2 "2884667"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "7"
ASSIGN S2 "5361917"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "8"
ASSIGN S2 "9658761"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "9"
ASSIGN S2 "9653121"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "10"
ASSIGN S2 "XXXXXXX"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "D" ;If the user enters "D",
EXECUTE "VERSA.CMD" ; pass the parameter to VERSA.CMD
ENDCASE
CASE "E" ;If the user enters "E",
EXECUTE "VERSA.CMD" ; pass the parameter to VERSA.CMD
ENDCASE
CASE "G" ;If the user enters "G",
EXECUTE "VERSA.CMD" ; pass the parameter to VERSA.CMD
ENDCASE
DEFAULT ;Any other input should be a phone number,
ASSIGN S2 S9 ; so assign the input to S2
ENDCASE
ENDSWITCH ;End of decision based on user input
ASSIGN S9 "ACTIVE" ;We're ready to dial, so make S9 "ACTIVE",
EXECUTE "VERSA.CMD" ; and go back to VERSA.CMD
OHCLV:
CLEAR ;Clear screen
LOCATE 2,0 ;Locate cursor for menu drawing
MESSAGE " ╒═══════╡ Cleveland BBS Directory (216) ╞═══════╕"
MESSAGE " │ │"
MESSAGE " │ -Board- -SIG- │"
MESSAGE " │ │"
MESSAGE " │ < 1> Cleveland RBBS │"
MESSAGE " │ < 2> InfoGuide │"
MESSAGE " │ < 3> InfoGuide (other line) │"
MESSAGE " │ < 4> Micro-Chip │"
MESSAGE " │ < 5> GCPCUG/JCU BBS │"
MESSAGE " │ < 6> The Machine │"
MESSAGE " │ < 7> Free-Net │"
MESSAGE " │ < 8> Data-Term │"
MESSAGE " │ < 9> Dog House │"
MESSAGE " │ <10> │"
MESSAGE " │ │"
MESSAGE " │ <G>o back to city selection │"
MESSAGE " │ │"
MESSAGE " ├────────────────────────────────────────────────┤"
MESSAGE " │ Enter 1-10 or other phone number: │"
MESSAGE " ╘════════════════════════════════════════════════╛"
LOCATE 20,52 ;Locate cursor for user input
GET S9 11 ;Get user input (11 characters)
SWITCH S9 ;Decision based on S9 (user input)
CASE "1" ;All of the following 10 cases are identical.
ASSIGN S2 "3313576" ; Each assigns the number of a BBS to S2 and the
;$ASSIGN S7 "COMMAND.VER" ; name of a "linked command file" to S7. If no
ENDCASE ; linked command file is to be used, then a
CASE "2" ; semicolon should be at the beginning of the
ASSIGN S2 "6213434" ; ASSIGN S7 line, or delete the line entirely.
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "3"
ASSIGN S2 "6213435"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "4"
ASSIGN S2 "2256130"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "5"
ASSIGN S2 "3974256"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "6"
ASSIGN S2 "2521288"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "7"
ASSIGN S2 "3683888"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "8"
ASSIGN S2 "5623263"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "9"
ASSIGN S2 "2510110"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "10"
ASSIGN S2 "XXXXXXX"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "D" ;If the user enters "D",
EXECUTE "VERSA.CMD" ; pass the parameter to VERSA.CMD
ENDCASE
CASE "E" ;If the user enters "E",
EXECUTE "VERSA.CMD" ; pass the parameter to VERSA.CMD
ENDCASE
CASE "G" ;If the user enters "G",
EXECUTE "VERSA.CMD" ; pass the parameter to VERSA.CMD
ENDCASE
DEFAULT ;Any other input should be a phone number,
ASSIGN S2 S9 ; so assign the input to S2
ENDCASE
ENDSWITCH ;End of decision based on user input
ASSIGN S9 "ACTIVE" ;We're ready to dial, so make S9 "ACTIVE",
EXECUTE "VERSA.CMD" ; and go back to VERSA.CMD
MIDET:
CLEAR ;Clear screen
LOCATE 2,0 ;Locate cursor for menu drawing
MESSAGE " ╒════════╡ Detroit BBS Directory (313) ╞════════╕"
MESSAGE " │ │"
MESSAGE " │ -Board- -SIG- │"
MESSAGE " │ │"
MESSAGE " │ < 1> PCUTIL │"
MESSAGE " │ < 2> Freeform │"
MESSAGE " │ < 3> East Area BBS │"
MESSAGE " │ < 4> Microchip │"
MESSAGE " │ < 5> 007's Computer Runway │"
MESSAGE " │ < 6> Daedalus │"
MESSAGE " │ < 7> Arcade │"
MESSAGE " │ < 8> 23 Cutting Board │"
MESSAGE " │ < 9> Bit Bucket │"
MESSAGE " │ <10> │"
MESSAGE " │ │"
MESSAGE " │ <G>o back to city selection │"
MESSAGE " │ │"
MESSAGE " ├────────────────────────────────────────────────┤"
MESSAGE " │ Enter 1-10 or other phone number: │"
MESSAGE " ╘════════════════════════════════════════════════╛"
LOCATE 20,52 ;Locate cursor for user input
GET S9 11 ;Get user input (11 characters)
SWITCH S9 ;Decision based on S9 (user input)
CASE "1" ;All of the following 10 cases are identical.
ASSIGN S2 "3930527" ; Each assigns the number of a BBS to S2 and the
;$ASSIGN S7 "COMMAND.VER" ; name of a "linked command file" to S7. If no
ENDCASE ; linked command file is to be used, then a
CASE "2" ; semicolon should be at the beginning of the
ASSIGN S2 "7747258" ; ASSIGN S7 line, or delete the line entirely.
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "3"
ASSIGN S2 "9496665"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "4"
ASSIGN S2 "9496745"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "5"
ASSIGN S2 "3488535"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "6"
ASSIGN S2 "9331425"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "7"
ASSIGN S2 "9788087"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "8"
ASSIGN S2 "2917716"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "9"
ASSIGN S2 "3430877"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "10"
ASSIGN S2 "XXXXXXX"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "D" ;If the user enters "D",
EXECUTE "VERSA.CMD" ; pass the parameter to VERSA.CMD
ENDCASE
CASE "E" ;If the user enters "E",
EXECUTE "VERSA.CMD" ; pass the parameter to VERSA.CMD
ENDCASE
CASE "G" ;If the user enters "G",
EXECUTE "VERSA.CMD" ; pass the parameter to VERSA.CMD
ENDCASE
DEFAULT ;Any other input should be a phone number,
ASSIGN S2 S9 ; so assign the input to S2
ENDCASE
ENDSWITCH ;End of decision based on user input
ASSIGN S9 "ACTIVE" ;We're ready to dial, so make S9 "ACTIVE",
EXECUTE "VERSA.CMD" ; and go back to VERSA.CMD
CTHAR:
CLEAR ;Clear screen
LOCATE 2,0 ;Locate cursor for menu drawing
MESSAGE " ╒════════╡ Hartford BBS Directory (203) ╞════════╕"
MESSAGE " │ │"
MESSAGE " │ -Board- -SIG- │"
MESSAGE " │ │"
MESSAGE " │ < 1> │"
MESSAGE " │ < 2> │"
MESSAGE " │ < 3> │"
MESSAGE " │ < 4> │"
MESSAGE " │ < 5> │"
MESSAGE " │ < 6> │"
MESSAGE " │ < 7> │"
MESSAGE " │ < 8> │"
MESSAGE " │ < 9> │"
MESSAGE " │ <10> │"
MESSAGE " │ │"
MESSAGE " │ <G>o back to city selection │"
MESSAGE " │ │"
MESSAGE " ├────────────────────────────────────────────────┤"
MESSAGE " │ Enter 1-10 or other phone number: │"
MESSAGE " ╘════════════════════════════════════════════════╛"
LOCATE 20,52 ;Locate cursor for user input
GET S9 11 ;Get user input (11 characters)
SWITCH S9 ;Decision based on S9 (user input)
CASE "1" ;All of the following 10 cases are identical.
ASSIGN S2 "XXXXXXX" ; Each assigns the number of a BBS to S2 and the
;$ASSIGN S7 "COMMAND.VER" ; name of a "linked command file" to S7. If no
ENDCASE ; linked command file is to be used, then a
CASE "2" ; semicolon should be at the beginning of the
ASSIGN S2 "XXXXXXX" ; ASSIGN S7 line, or delete the line entirely.
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "3"
ASSIGN S2 "XXXXXXX"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "4"
ASSIGN S2 "XXXXXXX"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "5"
ASSIGN S2 "XXXXXXX"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "6"
ASSIGN S2 "XXXXXXX"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "7"
ASSIGN S2 "XXXXXXX"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "8"
ASSIGN S2 "XXXXXXX"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "9"
ASSIGN S2 "XXXXXXX"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "10"
ASSIGN S2 "XXXXXXX"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "D" ;If the user enters "D",
EXECUTE "VERSA.CMD" ; pass the parameter to VERSA.CMD
ENDCASE
CASE "E" ;If the user enters "E",
EXECUTE "VERSA.CMD" ; pass the parameter to VERSA.CMD
ENDCASE
CASE "G" ;If the user enters "G",
EXECUTE "VERSA.CMD" ; pass the parameter to VERSA.CMD
ENDCASE
DEFAULT ;Any other input should be a phone number,
ASSIGN S2 S9 ; so assign the input to S2
ENDCASE
ENDSWITCH ;End of decision based on user input
ASSIGN S9 "ACTIVE" ;We're ready to dial, so make S9 "ACTIVE",
EXECUTE "VERSA.CMD" ; and go back to VERSA.CMD
FLMIA:
CLEAR ;Clear screen
LOCATE 2,0 ;Locate cursor for menu drawing
MESSAGE " ╒═════════╡ Miami BBS Directory (305) ╞═════════╕"
MESSAGE " │ │"
MESSAGE " │ -Board- -SIG- │"
MESSAGE " │ │"
MESSAGE " │ < 1> Adults Only II │"
MESSAGE " │ < 2> Miami PC Network │"
MESSAGE " │ < 3> Miami Users Group │"
MESSAGE " │ < 4> The Kendall Switchboard │"
MESSAGE " │ < 5> CompuSci Fido │"
MESSAGE " │ < 6> Genesis BBS │"
MESSAGE " │ < 7> John Galt Line │"
MESSAGE " │ < 8> Miami Dade Fido │"
MESSAGE " │ < 9> │"
MESSAGE " │ <10> │"
MESSAGE " │ │"
MESSAGE " │ <G>o back to city selection │"
MESSAGE " │ │"
MESSAGE " ├────────────────────────────────────────────────┤"
MESSAGE " │ Enter 1-10 or other phone number: │"
MESSAGE " ╘════════════════════════════════════════════════╛"
LOCATE 20,52 ;Locate cursor for user input
GET S9 11 ;Get user input (11 characters)
SWITCH S9 ;Decision based on S9 (user input)
CASE "1" ;All of the following 10 cases are identical.
ASSIGN S2 "5944526" ; Each assigns the number of a BBS to S2 and the
;$ASSIGN S7 "COMMAND.VER" ; name of a "linked command file" to S7. If no
ENDCASE ; linked command file is to be used, then a
CASE "2" ; semicolon should be at the beginning of the
ASSIGN S2 "9354964" ; ASSIGN S7 line, or delete the line entirely.
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "3"
ASSIGN S2 "6217534"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "4"
ASSIGN S2 "2712146"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "5"
ASSIGN S2 "7584871"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "6"
ASSIGN S2 "8952998"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "7"
ASSIGN S2 "2351645"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "8"
ASSIGN S2 "3472970"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "9"
ASSIGN S2 "XXXXXXX"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "10"
ASSIGN S2 "XXXXXXX"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "D" ;If the user enters "D",
EXECUTE "VERSA.CMD" ; pass the parameter to VERSA.CMD
ENDCASE
CASE "E" ;If the user enters "E",
EXECUTE "VERSA.CMD" ; pass the parameter to VERSA.CMD
ENDCASE
CASE "G" ;If the user enters "G",
EXECUTE "VERSA.CMD" ; pass the parameter to VERSA.CMD
ENDCASE
DEFAULT ;Any other input should be a phone number,
ASSIGN S2 S9 ; so assign the input to S2
ENDCASE
ENDSWITCH ;End of decision based on user input
ASSIGN S9 "ACTIVE" ;We're ready to dial, so make S9 "ACTIVE",
EXECUTE "VERSA.CMD" ; and go back to VERSA.CMD
NJNEW:
CLEAR ;Clear screen
LOCATE 2,0 ;Locate cursor for menu drawing
MESSAGE " ╒═════════╡ Newark BBS Directory (201) ╞═════════╕"
MESSAGE " │ │"
MESSAGE " │ -Board- -SIG- │"
MESSAGE " │ │"
MESSAGE " │ < 1> Microsellar 120 Megabytes │"
MESSAGE " │ < 2> Hotel California │"
MESSAGE " │ < 3> SEA Board Home of ARC │"
MESSAGE " │ < 4> Sparta Hard Disk Info │"
MESSAGE " │ < 5> The Data Base 123, dBase, Framework │"
MESSAGE " │ < 6> BOSS BBS │"
MESSAGE " │ < 7> Shelter │"
MESSAGE " │ < 8> Ed Gelb's │"
MESSAGE " │ < 9> │"
MESSAGE " │ <10> │"
MESSAGE " │ │"
MESSAGE " │ <G>o back to city selection │"
MESSAGE " │ │"
MESSAGE " ├────────────────────────────────────────────────┤"
MESSAGE " │ Enter 1-10 or other phone number: │"
MESSAGE " ╘════════════════════════════════════════════════╛"
LOCATE 20,52 ;Locate cursor for user input
GET S9 11 ;Get user input (11 characters)
SWITCH S9 ;Decision based on S9 (user input)
CASE "1" ;All of the following 10 cases are identical.
ASSIGN S2 "2391346" ; Each assigns the number of a BBS to S2 and the
;$ASSIGN S7 "COMMAND.VER" ; name of a "linked command file" to S7. If no
ENDCASE ; linked command file is to be used, then a
CASE "2" ; semicolon should be at the beginning of the
ASSIGN S2 "3278245" ; ASSIGN S7 line, or delete the line entirely.
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "3"
ASSIGN S2 "6943348"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "4"
ASSIGN S2 "7295377"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "5"
ASSIGN S2 "9435419"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "6"
ASSIGN S2 "5687293"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "7"
ASSIGN S2 "7837458"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "8"
ASSIGN S2 "6947425"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "9"
ASSIGN S2 "XXXXXXX"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "10"
ASSIGN S2 "XXXXXXX"
;$ASSIGN S7 "COMMAND.VER"
ENDCASE
CASE "D" ;If the user enters "D",
EXECUTE "VERSA.CMD" ; pass the parameter to VERSA.CMD
ENDCASE
CASE "E" ;If the user enters "E",
EXECUTE "VERSA.CMD" ; pass the parameter to VERSA.CMD
ENDCASE
CASE "G" ;If the user enters "G",
EXECUTE "VERSA.CMD" ; pass the parameter to VERSA.CMD
ENDCASE
DEFAULT ;Any other input should be a phone number,
ASSIGN S2 S9 ; so assign the input to S2
ENDCASE
ENDSWITCH ;End of decision based on user input
ASSIGN S9 "ACTIVE" ;We're ready to dial, so make S9 "ACTIVE",
EXECUTE "VERSA.CMD" ; and go back to VERSA.CMD