xx=1
while : 
do
	if [ $xx -le $Num_cnct ]
	then
		echo "####### Starting the $xx x1 #######"
		xtest1 &
		xx=`expr $xx + 1`
	else
		break
	fi
done

xx=1
while :
do
	if [ $xx -le $Num_cnct ]
	then
		echo "####### Starting the $xx x2 #######"

		xtest2 -b0-sa -t1 -n1000 -z100 &
		xx=`expr $xx + 1`
	else
		break
	fi
done
