#       Instructions
#
# the URL for the cgi is
# "http://www.durham.net/cgi-bin/generic_comments.pl"
#
# You MUST set a hidden variable in your HTML code so the CGI knows where to
# email the results.  Add the following line to your form, making sure you
# enter YOUR email address in the VALUE field.
#
# <INPUT TYPE=HIDDEN NAME=EMAILTO VALUE="userid@mail.durham.net">
#
#
# You may also define a page to send the user to once the form has been
# submitted.
#
# <INPUT TYPE=HIDDEN NAME=THANKYOUPAGE VALUE="http://www.durham.net/~userid/thanks.html">
#
#
# If you wish to distinguish between the results of various forms, you
# may specify a SUBJECT line to be used in the email.
# <INPUT TYPE=HIDDEN NAME=MSGSUBJECT VALUE="Subject Goes Here">
# or you might let the user enter the subject:
# <INPUT TYPE=TEXT NAME=MSGSUBJECT VALUE="">
#
# All values will be sent via email to you in the form of:
# VARIABLE_NAME: VALUE
# VARIABLE_NAME: VALUE
# VARIABLE_NAME: VALUE
# VARIABLE_NAME: VALUE
# etc....
#
# The email sent to you will come from the Web Administrator, however, if
# you collect an email address on your form, and use "MSGFROM" as the name
# of the variable, then the email sent to you will appear to have come
# directly from the persons email address, making it a simple matter of
# replying to the message in order to send them a response.
#