home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- goto START
- :START
- echo.
- echo ╔╡ Select an Option ╞═════╗
- echo ║ ║
- echo ║ A. Introduction ║
- echo ║ B. Tutorial ║
- echo ║ C. SysOp Information ║
- echo ║ D. Catalog Copy ║
- echo ║ E. Exit to DOS ║
- echo ║ ║
- echo ╚═════════════════════════╝
- fill 1,5,27,9,1,e
- fill 1,8,17,1,1,f
- echo.
- keypress ABCDE
- if errorlevel 5 goto E
- if errorlevel 4 goto D
- if errorlevel 3 goto C
- if errorlevel 2 goto B
- if errorlevel 1 goto A
- echo Sorry, that was an invalid selection, please try again.
- wait 2
- cls
- goto START
- echo
- :E
- fill 7,7,23,1,4,f
- wait 1
- cls
- goto END
- :D
- fill 6,7,23,1,4,f
- wait 1
- cls
- browse catalog.doc
- cls
- goto START
- :C
- fill 5,7,23,1,4,f
- wait 1
- cls
- browse sysop.doc
- cls
- goto START
- :B
- fill 4,7,23,1,4,f
- wait 1
- cls
- browse tutorial.doc
- cls
- goto START
- :A
- fill 3,7,23,1,4,f
- wait 1
- cls
- browse intro.doc
- cls
- wait 2
- goto START
- :END
- cls
- echo.
- echo.
- echo ╔════════════════════════════════════════════════════════════════╗
- echo ║ ║
- echo ║ To start the program, make sure you are logged onto the sub- ║
- echo ║ directory you created, type the two-letter state code for the ║
- echo ║ state you installed, then press the Enter key (─┘). ║
- echo ║ ║
- echo ║ If you have difficulty with this installation or any other ║
- echo ║ aspect of StatMaster, please call CyberSoft at (602)491-0022. ║
- echo ║ ║
- echo ╚════════════════════════════════════════════════════════════════╝
- fill 2,3,66,10,1,e
- echo.
- :FINISH