#
# usage:        clearsc.sh
#
# abstract:     This Bourne Shell clears the screen.
#
# note(s):      1. This routine must be called using a . (period)
#		2. Added two blank lines in case the clear doesn't work.
#
# Copyright (c) 1992-1998 The MathWorks, Inc. All Rights Reserved.
# $Revision: 1.7 $  $Date: 1999/01/11 19:24:42 $
#----------------------------------------------------------------------------
#
        echo ''
        echo ''
	if [ "$batch" = "0" ]; then
	    clear
	fi
