#! /usr/bin/perl -w use Common; HTML_header("Montville Township Chamber of Commerce"); readByCATEGORY(); # create hash of categories print "
\n"; print "\n"; print ""; print "
Please choose the first letter in the company name you are searching for. Letters with no links indicate that no business beginning with that letter is a member of the Chamber.
"; foreach $letter (@alphabet) { if ($bnameLetters{$letter}) { print " $letter \n"; } else { print " $letter \n"; } } print "
Or search by category, by selecting the topic that best matches your search criteria.
\n"; $midwayPoint = int(scalar(keys(%hash)) / 2); $cntCategory = 0; print "
\n"; foreach $category (sort(keys(%hash))) { $categoryURL = $category; $categoryURL =~ s/ /+/g; print "$category
\n"; if ($cntCategory == $midwayPoint) { print "
"; } $cntCategory++; } print "
\n"; print "\n"; print "
"; print "
\n"; print "

Add a Member

\n"; print "

Update Member Information

\n"; HTML_footer(); exit;