#!/bin/sh
DIALOG=${DIALOG=dialog}

$DIALOG --title "MESSAGE BOX" --clear \
        --msgbox "Hi, I'm an authorization manager using the removale devices.\
                  If you have the authorization device of this system, \
		  then set the device\
		  and you press the ENTER key." 10 41
case $? in
  0)
	/usr/local/sbin/usbauth;;
  255)
	/usr/X11R6/bin/xdm;;
esac
