#!/bin/sh
DIALOG=Xdialog

$DIALOG	--title "USB STICK" \
        --radiolist "" 11 38 0 \
        "Mount a USB stick" "" ON \
        "Set a USB stick to boot off GParted"  "" off 2>/tmp/checklist.tmp.$$

retval=$?
choice=`cat /tmp/checklist.tmp.$$`
rm -f /tmp/checklist.tmp.$$

case $choice in
	"Mount a USB stick")
		mlterm -title "Mount USB STICK" gl-mountstick.sh
		;;
	"Set a USB stick to boot off GParted")
		mlterm -title "Set USB stick to boot off GParted" -geometry 100x35 gl_set_usb_from_livecd.sh
		;;	
esac
