#!/usr/bin/perl print "Content-type: text/html\n\n"; $station = $ENV{QUERY_STRING}; print <<"HTML"; Notebook

HTML if ($station == 0){ print <<"HTML"; 0 - What advantages does the pristine forest have over other areas of the watershed? HTML } elsif ($station == 1){ print <<"HTML"; 1 - How does the value of this indicator differ from that of the pristine forest? Why does this difference occur? HTML } elsif ($station == 2){ print <<"HTML"; 2 - How does use as an agricultural area affect the value of this indicator? What environmental processes result in the change in this indicator? HTML } elsif ($station == 3){ print <<"HTML"; 3 - Residential areas may include high or low density zoning. How would more people per unit area affect the value of this indicator? HTML } elsif ($station == 4){ print <<"HTML"; 4 -Would you expect this indicator to show poor quality water in a poorly managed Commercial/Industrial Area? Why or why not? HTML } elsif ($station == 5){ print <<"HTML"; 5 - How does precipitation affect the value of this indicator in the Wetlands area? HTML } elsif ($station == 6){ print <<"HTML"; 6 - Would the value of this indicator differ significantly from its value in the residential area? Why or why not? What difference would management practices make? HTML } elsif ($station == 7){ print <<"HTML"; 7 - What subwatershed would you investigate first to improve water quality as shown by this indicator? HTML } print <<"HTML";

Your notes on this location:


HTML 1;