#
# usage:        ftp.sh
#
# abstract:     This Bourne Shell script is for FTP selection.
#
# note(s):      1. This routine must be called using a . (period)
#
# Copyright (c) 1994-1997 by The MathWorks, Inc.
# $Revision: 1.5 $  $Date: 1997/07/10 03:12:28 $
#----------------------------------------------------------------------------
#
    MAPS_DIR=$MATLAB/update/maps/ftp
    SCREEN=$MATLAB/update/ftp/$$screen
#
#			Build $MATLAB/update/ftp directory
#                       ----------------------------------
#
    if [ ! -d $MATLAB/update/ftp ]; then
	mkdir $MATLAB/update/ftp
    fi
#                   
#				Welcome message
#				---------------
#
    . $dir/$clearsc_sh
    . $dir/$fwelcome_sh
#
#				Get default map [ DEFAULT_MAP ]
#				---------------
#
    . $dir/$defltmap_sh
#
#
#			      Build product screens
#			      ---------------------
#
    . $dir/$fpdscren_sh
#
#				Product selection
#				-----------------
#
    . $dir/$fpdselct_sh
#				     Cleanup
#				     -------
#				
    . $dir/$cleanup_sh
    exit 0
#
