gdialog --stdout \
    --checklist 'Escolha o Servidor:' 0 0 0 \
	'1' 'servidor1' ON  \
	'2' 'servidor2' OFF \
	'3' 'servidor3' OFF \
	'4' 'servidor4' OFF \
	'5' 'servidor5' OFF \
	'6' 'servidor6' OFF \
	'7' 'servidor7' OFF \
	'8' 'servidor8' OFF \
	'9' 'servidor9' OFF 2> /tmp/opcao.txt
	
choice=`cat /tmp/opcao.txt`

if [ "$choice" = 1 ]
then
xvnc4viewer <ip>
fi

if [ "$choice" = 2 ]
then
xvnc4viewer <ip>
fi

if [ "$choice" = 3 ]
then
xvnc4viewer <ip>
fi

if [ "$choice" = 4 ]
then
xvnc4viewer <ip>
fi

if [ "$choice" = 5 ]
then
xvnc4viewer <ip>
fi

if [ "$choice" = 6 ]
then
xvnc4viewer <ip>
fi

if [ "$choice" = 7 ]
then
xvnc4viewer <ip>
fi

if [ "$choice" = 8 ]
then
xvnc4viewer <ip>
fi

if [ "$choice" = 9 ]
then
xvnc4viewer <ip>
fi
