#!/bin/sh

# YESNO BOX
# ------------
# It prompts the user for a value. Then that value is store
# in file /tmp/Fdrive_size, from where other programs may
dialog 	--title "FORMATTING"\
	--yesno "\n  Format another?   \n" 8 25

	if [ $? = 1 -o $? = 255 ]; then
 	    echo "I got NO"
 	    exit
	fi
        echo "I got YES"
