#!/bin/sh
# IFe_dialog
# Confirm unconstrained unsequenced continuation.
schema=`${IFE_HOME}/sys/bin/dialog -p "Is is ok to proceed with this design session ?" -ok -h1 "This shows transaction management by" -h2 "different agents."`


if [ ! Y$schema = Y ]; then
	if [ $schema = "dialog_option_yes" ]; then
		echo	"dialog_complete	continue_session"
	fi
	if [ $schema = "dialog_option_no" ]; then
		echo	"dialog_complete	continue_session"
	fi
fi
exit 0
