// description of your code here
IFS="
"
for C in Africa Antarctica Asia Australasia Europe North_America South_America
do
mkdir -p GIS/$C
wget -O jeter.html -q "http://www.maproom.psu.edu/cgi-bin/dcw/dcwarea.cgi?$C"
for P in `egrep '^<OPTION' jeter.html | cut -d '>' -f2`
do
curl -d "area=$C" -d "country=$P" -o jeter2.html "http://www.maproom.psu.edu/cgi-bin/dcw/dcwcountry0.cgi"
P2=`grep FORM jeter2.html | grep point10 | tr "<>" "\n\n" | grep count| cut -d ' ' -f4 | cut -d '=' -f2`
wget -O jeter2.html "http://www.maproom.psu.edu/cgi-bin/dcw/point10.cgi?country=$P2"
P3=`cat jeter2.html | tr " >" "\n\n" | grep ftp`
echo "##### $P2 $P3"
wget -O jeter3.txt "$P3"
mv jeter3.txt > GIS/$C/${P2}.js
sleep 3
done
done