echo -n "Your Terminal is defined as a $TERM. Is this correct (y|n)? "
read ans
case $ans in

	Y|y)	;;
	*) 	echo -n "Please enter the correct terminal type: "
		read ans2
		TERM=$ans2;export TERM
		;;
esac
exec mview
