#!/bin/sh
#
#	Demonstration of BIOSIM
#
clear
echo "				BIOSIM DEMONSTRATION"
echo ""
echo -n "<Deutsch/English>  : (D/E)  <Default = D> : "
read LANGUAGE
if [ "$LANGUAGE" = "" ] ; then
        LANGUAGE=D
fi
if [ ${LANGUAGE} = "D" -o ${LANGUAGE} = "d" ] ; then
        LANGUAGE=D
else
	LANGUAGE=E
fi
echo ""
if [ "$LANGUAGE" = "D" ] ; then
	xterm -geometry 80x24-0+0 -fn "-adobe-courier-medium-r-normal-*-10-*-*-*-*-*-iso8859-1" -title "BIOSIM 4.3 Demonstration" -e DEMO.command.de
else
	xterm -geometry 80x24-0+0 -fn "-adobe-courier-medium-r-normal-*-10-*-*-*-*-*-iso8859-1" -title "BIOSIM 4.3 Demonstration" -e DEMO.command.us
fi
