!CONNECT SCRIPT FOR DEC DF112 MODEM
!
LABEL DIAL
TYPE	"Using DEC modem^"
TYPE	"Dialling...^"
SEND	"T"
SEND	#
SEND	"#"
INPUT	2 18 "Attached" "No answer" "Error" "No dial"
IF	1 GOTO ANSWERED
IF	2 GOTO NO_ANS
IF	3 GOTO ERROR
IF	4 GOTO NO_DIAL
ABORT	"^^No response to dialling - Contact Computer Services^^"
!
LABEL NO_ANS
ABORT	"^^Line busy^^"
!
LABEL ERROR
ABORT	"^^Dialling error - Contact Computer Services^^"
!
LABEL NO_DIAL
ABORT	"^^No dial tone - Contact Computer Services^^"
!
LABEL ANSWERED
TYPE	"Answered...^"
!finished dialling
