#!/bin/sh
TTYSERVER="library.mit.edu"
HELP="/mit/library/help"
if [ "$DISPLAY" = "" ]
then
        clear
        cat << EOF
                       Barton (MIT Library Card Catalog)
 
        NOTICE:  (8/23/93)  Barton access from Athena is temporarily 
	unavailable while we upgrade the service.  Please try again 
	after 12 noon, today.
 
EOF

	echo "Hit the Return key to continue..."
	read answer 
  
else
 
        xterm  -T 'Barton' -geometry 80x25 $TFLAGS \
          -e /afs/athena.mit.edu/project/library/bin/barton.shutdown.x
 
fi
 
exit 0
