#! /bin/csh
echo ""
echo "Indicate if you want to see the flight level/satellite images or"
echo "the flight level/satellite/radar images"
echo "   s  -> flight level/satellite images"
echo "   rs -> flight level/satellite/radar images"
set whichdata = $<
if $whichdata == 's' then
   xloop -nsc -ns -in *.s.gif &
else
   xloop -nsc -ns -in *.rs.gif &
endif
