-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex1.html
More file actions
1369 lines (1189 loc) · 51.5 KB
/
index1.html
File metadata and controls
1369 lines (1189 loc) · 51.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=windows-1252">
<meta name="GENERATOR" content="Mozilla/4.79 [en] (Windows NT 5.0;
U) [Netscape]">
<meta name="Author" content="Rick Ryan">
<title>BSA Troop 53 New Berlin WI</title>
<link rel="icon" type="image/vnd.microsoft.icon"
href="http://www.pacunits.org/t53/favicon.ico">
<!--THIS is the title block, which dictates what the page is called in the history list. Also, many search engines use the title's contents as the first thing they examine on a queried search.-->
<!--The BODY tag is the demarcation for the beginning of the HTML document. It determines how the page will look in overall appearance. If a picture is desired for a background, use the BACKGROUND= command parameter. For a specific color, use BGCOLOR=#------. Change the color of all plain text using the TEXT=#------ parameter. The colors of your links before they are clicked on with LINK=, the color of your links after they are clicked on with VLINK=, and the color of your links while they are clicked on with ALINK= -->
</head>
<body alink="#FFFFFF" background="scoutpaperembossed.jpg"
bgcolor="#ECDEB3" link="#0000FF" text="#000000" vlink="#551A8B">
<center>
<table cols="1" border="0" cellpadding="0" cellspacing="0"
width="765">
<tbody>
<tr>
<td>
<center><a name="BSA"></a> <br>
<b><font size="+4">BSA Troop 53</font></b> <br>
<font size="+2">New Berlin, Wisconsin</font> <br>
<font size="+2">Potawatomi Area Council</font></center>
<p><font face="Arial,Helvetica"><font color="#3366FF"><font
size="-2"><a href="#Adult">ADULT LEADERSHIP</a></font></font></font>
<br>
<font face="Arial,Helvetica"><font color="#3366FF"><font
size="-2"><a href="#Community">COMMUNITY SERVICE</a></font></font></font>
<br>
<font face="Arial,Helvetica"><font color="#3366FF"><font
size="-2"><a href="#Outings">ACTIVITIES THIS
SEASON</a></font></font></font> <br>
<font face="Arial,Helvetica"><font color="#3366FF"><font
size="-2"><a href="summer.html">LONG LAKE SUMMER
CAMP</a></font></font></font> <br>
<font face="Arial,Helvetica"><font color="#3366FF"><font
size="-2"><a href="#High">HIGH ADVENTURE</a></font></font></font>
<br>
<font face="Arial,Helvetica"><font color="#3366FF"><font
size="-2"><a href="training.html">ADULT LEADER
TRAINING</a></font></font></font> <br>
<font face="Arial,Helvetica"><font color="#3366FF"><font
size="-2"><a href="eagles.html">EAGLE SCOUTS</a></font></font></font>
<br>
<font face="Arial,Helvetica"><font color="#3366FF"><font
size="-2"><a href="#Calendar">CALENDAR</a></font></font></font>
</p>
<p><font face="Arial,Helvetica"><font color="#3366FF"><font
size="-2"><a href="#e-mail">E-MAIL & LINKS</a></font></font></font>
</p>
<center>
<p><b><font size="+2">Troop 53 is part of the</font></b>
</p>
<p><b><font size="+3">Onatah District</font></b> </p>
<p><b><font size="+2">Serving youth in the school
districts of</font></b> <br>
<b><font size="+2">Waukesha, New Berlin, Muskego,
Mukwonago, and East Troy</font></b></p>
</center>
<p><b>Troop 53 is chartered to St. Elizabeth Ann Seton
Congregation in New Berlin. Our meetings are
held every Tuesday during the school year at Herbert
Hoover Elementary School in New Berlin. The
meetings run from 6:45 PM until about 8 PM. We
have just completed our 43rd year as a Troop, and have
earned the Journey to Excellence Gold Award for 2013.</b>
<br>
<a name="Adult"></a> <br>
<b>Adult leadership in the troop is as follows:</b> <br>
</p>
<center>
<table cols="2" border="0" cellpadding="0"
cellspacing="0" width="85%">
<tbody>
<tr>
<td><b>Institutional Head:</b></td>
<td><b>Fr. Joseph Aufdermauer</b></td>
</tr>
<tr>
<td><b>Chartered Organization Representative:</b></td>
<td><b>Bob Opichka</b></td>
</tr>
<tr>
<td><b>Troop Committee Chair:</b></td>
<td><b>Greg Schmidt</b></td>
</tr>
<tr>
<td><b>Troop Committee Members:</b></td>
<td><b>Tim Buban</b></td>
</tr>
<tr>
<td valign="top"><br>
</td>
<td valign="top"><b>George Christenson<br>
</b></td>
</tr>
<tr>
<td><br>
</td>
<td><b>Jim Egeland</b></td>
</tr>
<tr>
<td valign="top"><br>
</td>
<td valign="top"><b>Donna Fisher (Advancement)<br>
</b></td>
</tr>
<tr>
<td valign="top"><br>
</td>
<td valign="top"><b>Bill Giese</b></td>
</tr>
<tr>
<td><br>
</td>
<td><b>Sanja Glisic</b></td>
</tr>
<tr>
<td valign="top"><br>
</td>
<td valign="top"><b>Nick Goldner</b></td>
</tr>
<tr>
<td><br>
</td>
<td><b>Steve Kohel</b> <b>(Fundraising)</b></td>
</tr>
<tr>
<td valign="top"><br>
</td>
<td valign="top"><b>Pat</b> <b>Kwiatkowski</b></td>
</tr>
<tr>
<td><br>
</td>
<td><b>Rick Pomeroy</b></td>
</tr>
<tr>
<td><br>
</td>
<td><b>Tracey Pomeroy (Secretary)</b></td>
</tr>
<tr>
<td><br>
</td>
<td><b>Rick Ryan (Training)</b></td>
</tr>
<tr>
<td><br>
</td>
<td><b>John Rypel</b></td>
</tr>
<tr>
<td><br>
</td>
<td><b>Mary Schmidt (Treasurer)</b></td>
</tr>
<tr>
<td valign="top"><br>
</td>
<td valign="top"><b>Greg Smith<br>
</b></td>
</tr>
<tr>
<td><br>
</td>
<td><b>Andy Stockhausen</b></td>
</tr>
<tr>
<td><br>
</td>
<td><b>Clive Wells (</b><b><b>Outdoor Activities</b>)<br>
</b></td>
</tr>
<tr>
<td><br>
</td>
<td><b> </b></td>
</tr>
<tr>
<td><b>Scoutmaster:</b></td>
<td><b>Tony Goldner</b></td>
</tr>
<tr>
<td><b>Assistant Scoutmasters:</b></td>
<td><b>Dale Dornacker </b></td>
</tr>
<tr>
<td><br>
</td>
<td><b>Roger Englund</b></td>
</tr>
<tr>
<td><br>
</td>
<td><b>Duane Fisher</b></td>
</tr>
<tr>
<td valign="top"><br>
</td>
<td valign="top"><b>Kevin Key</b></td>
</tr>
<tr>
<td><br>
</td>
<td><b>Brian Nelson</b></td>
</tr>
<tr>
<td><br>
</td>
<td><b>Bill Ryan</b></td>
</tr>
<tr>
<td> </td>
<td><b>Brian Uhan </b> </td>
</tr>
<tr>
<td valign="top"><br>
</td>
<td valign="top"><br>
</td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</tbody>
</table>
</center>
<p><b>Any adults who would like to know more about the
Scouting program and how it is designed to work, are
encouraged to enroll in New Leader Basic
Training. There are separate training sessions
for Leaders or Committee Members. Please see
Rick Ryan for information or <a href="#Training">Click
Here</a> for the next available training sessions.</b>
<br>
<br>
<br>
</p>
<center>
<p><img src="image_063.jpg" border="4" height="480"
hspace="2" vspace="2" width="640"></p>
</center>
<center>
<table cols="1" width="660">
<tbody>
<tr>
<td>
<center><b>Five of our New Scouts Receive Their
"Scout" Badge at the Spring Court of Honor</b></center>
</td>
</tr>
</tbody>
</table>
</center>
<ul>
<li> <b><font face="Arial,Helvetica"><font size="-2"><a
href="#BSA">TOP OF PAGE</a></font></font></b></li>
</ul>
<center>
<p><br>
<a name="Community"></a> <br>
<b><font size="+2">Community Service</font></b></p>
</center>
<p><b>The Troop is very active in community service, and
has become a regular service provider for New Berlin
SAYES (Senior Advocate Youth Exchange Service).
We have also been active in collecting items for
organizations sending personal items to our military
units overseas. For those Scouts who
participated in this activity, we recently received a
"Thank You" from Bostik Findley Adhesives Inc, a local
company coordinating one of these efforts.</b> <br>
</p>
<center>
<table cols="1" width="80%">
<tbody>
<tr>
<td><b><i>To Boy Scout Troop 53</i></b> <br>
<b><i> On
behalf of the employees of Bostik Findley, I
would like to thank you for your recent
contributions to our "Support our Troops"
drive. With the help of your
donations, we were able to ship 340 pounds
of items in 11 boxes to an Army support unit
located in Iraq. </i></b> <br>
<b><i> The
unit consists of 110 men and women who are
serving their time just north of
Baghdad. They are responsible for the
fuel supply for the area. They love
receiving items from home, especially from
those they do not know. Knowing that
people are thinking of them gives them the
encouragement to keep doing their
jobs. </i></b> <br>
<b><i> We at
Bostik Findley are pleased to know that you
care enough to assist us in our
efforts. Out thanks to you.</i></b>
<div align="right"><b><i>Nancy Baker - Project
Support</i></b></div>
</td>
</tr>
</tbody>
</table>
</center>
<br>
<ul>
<li> <b><font face="Arial,Helvetica"><font size="-2"><a
href="#BSA">TOP OF PAGE</a></font></font></b><a
name="Outings"></a></li>
</ul>
<center><b><font size="+2">Outings</font></b></center>
<p><b>We are a very active troop, going on an outing every
month and to summer camp at Long Lake in July.
We have been meeting at Lost Arrow Campsite since the
1970's. This year we switched to Trail
View. In 2003 our high adventure group became
certified as Open Water Scuba Divers, and now as
Venture Crew 53 members, have performed more
dives. </b> </p>
<p><b>In the summer of 2005, we sent our first crew to the
Scuba Adventure at Sea Base, and attended again in the
summers of 2007, 2009 and 2011</b><b>. In the
summer 2008, we had 2 crews canoeing the Boundary
Waters Canoe Area Wilderness in Minnesota. The
summer of 2012, we </b><b>conducted a High Adventure
Trip to Colorado, including a stop at Yellowstone
Park. In June of 2013 we spent 10 days hiking
the trails at Philmont Scout Ranch in New Mexico for
the first time since 1996. This summer, 2014, we
again attended Sea Base.</b> </p>
<center>
<p><img src="troop53s-2014.jpg" alt="Camp Long Lake
2014" border="2" height="266" width="600"> <br>
<b>The Troop at Camp Long Lake - July 13, 2014</b> </p>
<p><b><a href="summer.html">Click Here</a> for Camp Long
Lake Photos<br>
</b></p>
<div align="left">
<ul>
<li> <b><font face="Arial,Helvetica"><font
size="-2"><a href="#BSA">TOP OF PAGE</a></font></font></b></li>
</ul>
</div>
<p><br>
<b><font size="+2">Mukwonago Cub-O-Ree Day Camp</font></b>
<br>
<b>January 17, 2014<br>
</b></p>
<p><b>The Troop taught Cub Scouts to assemble the
Chairs, which they got to keep.<br>
</b></p>
<center>
<p><img src="CoREE-IMG_2657s.jpg" alt="Cub-O-Ree"
border="4" height="487" width="652"><br>
</p>
<table border="0" cellpadding="2" cellspacing="2"
width="660">
<tbody>
<tr>
<td align="center" valign="middle"><b>The Troop
Sets Up at the Cub-O-Ree</b><br>
</td>
</tr>
</tbody>
</table>
<p><img src="CoREE-IMG_2666s.jpg" alt="Cub-O-Ree"
border="4" height="240" hspace="4" width="320"><img
src="CoREE-IMG_2667s.jpg" alt="Cub-O-Ree"
border="4" height="240" hspace="4" width="320"></p>
</center>
<center>
<center>
<table border="0" cellpadding="2" cellspacing="2"
width="660">
<tbody>
<tr>
<td align="center" valign="middle"><b> </b></td>
<td align="center" valign="middle"><b> </b></td>
</tr>
</tbody>
</table>
<p><img src="CoREE-IMG_2689s.jpg" alt="Cub-O-Ree"
border="4" height="240" hspace="4" width="320"><img
src="CoREE-IMG_2707s.jpg" alt="Cub-O-Ree"
border="4" height="240" hspace="4" width="320"><br>
</p>
<table border="0" cellpadding="2" cellspacing="2"
width="660">
<tbody>
<tr>
<td valign="top"><br>
</td>
<td valign="top"><br>
</td>
</tr>
</tbody>
</table>
</center>
</center>
<p> </p>
</center>
<ul>
<li> <b><font face="Arial,Helvetica"><font size="-2"><a
href="#BSA">TOP OF PAGE</a></font></font></b></li>
</ul>
<center>
<p><br>
<b><font size="+2">Badger Trails Devils Lake Campout
and Hike</font></b> <br>
<b>October 3-5, 2014</b> </p>
<p><img src="img_1109s.jpg" alt="Devil's Lake Park
Entrance" border="4" height="240" hspace="4"
width="320"><img src="t053-img_1418s.jpg"
alt="Devil's Lake" border="4" height="240"
hspace="4" width="320"></p>
</center>
<center>
<table cols="2" align="center" width="660">
<tbody>
<tr>
<td align="CENTER" valign="CENTER"><b>Park
Entrance</b></td>
<td align="CENTER" valign="CENTER"><b>Devil's Lake</b></td>
</tr>
</tbody>
</table>
</center>
<center>
<p><img src="DL%20IMG_20141004_080118_459e.jpg" alt="The
Campsite" border="4" height="180" hspace="4"
width="320"><img
src="DL%20IMG_20141004_102130_801e.jpg" alt="The
"Color"" border="4" height="180"
hspace="4" width="320"></p>
</center>
<center>
<table cols="2" width="660">
<tbody>
<tr>
<td align="CENTER" valign="CENTER" width="50%"><b>The
Campsite<br>
</b></td>
<td align="CENTER" valign="CENTER" width="50%"><b>The
"Color"</b></td>
</tr>
</tbody>
</table>
</center>
<center>
<p><img alt="The Hike"
src="DL%20IMG_20141004_124026_002e.jpg" border="4"
height="367" width="652"></p>
</center>
<center>
<table cols="1" width="660">
<tbody>
<tr>
<td align="CENTER" valign="CENTER"><b>Heading to
the Hike<br>
</b></td>
</tr>
</tbody>
</table>
</center>
<center>
<p><img src="DL%20IMG_20141004_173925_434e.jpg" alt="The
Kitchen Tent" border="4" height="180" hspace="4"
width="320"><img
src="DL%20IMG_20141004_173749_380e.jpg"
alt="Preparing the Meal" border="4" height="180"
hspace="4" width="320"></p>
</center>
<center>
<table cols="2" width="660">
<tbody>
<tr>
<td align="CENTER" valign="CENTER" width="50%"><b>The
Kitchen Tent<br>
</b></td>
<td align="CENTER" valign="CENTER" width="50%"><b>Preparing
the Meal</b></td>
</tr>
</tbody>
</table>
</center>
<center>
<p><img src="DL%20IMG_20141004_080210_172e.jpg"
alt="Meal Time" border="4" height="367" hspace="4"
width="652"><br>
</p>
<table cols="2" width="660">
<tbody>
<tr>
<td align="CENTER" valign="CENTER" width="50%"><b>Meal
Time<br>
</b></td>
</tr>
</tbody>
</table>
<p><img src="DL%20IMG_20141004_200521_644e.jpg"
alt="Meal Time" border="4" height="367" hspace="4"
width="652"><br>
</p>
</center>
<center>
<table cols="2" width="660">
<tbody>
<tr>
<td align="CENTER" valign="CENTER" width="50%"><b>The
Dance<br>
</b></td>
</tr>
</tbody>
</table>
</center>
<ul>
<li> <b><font face="Arial,Helvetica"><font size="-2"><a
href="#BSA">TOP OF PAGE</a></font></font></b></li>
</ul>
<center><b><font size="+2">Mauthe Lake</font></b> <br>
<b>September 17-19, 2010</b>
<p><img src="img_1088s.jpg" alt="Mauthe Lake Entrance"
border="4" height="240" hspace="4" width="320"><img
src="img_1081s.jpg" alt="One Campsite" border="4"
height="240" hspace="4" width="320"></p>
</center>
<center>
<table cols="2" width="680">
<tbody>
<tr align="CENTER" valign="CENTER">
<td width="50%">
<center><b>Mauthe Lake Entrance</b></center>
</td>
<td width="50%">
<center><b>One Campsite</b></center>
</td>
</tr>
</tbody>
</table>
</center>
<center>
<p><img src="img_1085s.jpg" alt="The Peshtigo River"
border="4" height="492" hspace="4" width="656"></p>
</center>
<center>
<table cols="1" width="680">
<tbody>
<tr>
<td>
<center><b>The Troop in Camp</b></center>
</td>
</tr>
</tbody>
</table>
</center>
<center>
<p><img src="img_1032se.jpg" alt="Around the Campfire"
border="4" height="240" hspace="4" width="320"><img
src="img_1033se.jpg" alt="Roasting Marshmallows"
border="4" height="240" hspace="4" width="320"></p>
</center>
<center>
<table cols="2" width="680">
<tbody>
<tr align="CENTER" valign="CENTER">
<td width="50%">
<center><b>Around the Campfire</b></center>
</td>
<td width="50%">
<center><b>Roasting Marshmallows</b></center>
</td>
</tr>
</tbody>
</table>
</center>
<center>
<p><img src="img_1035s.jpg" alt="The Kitchen" border="4"
height="240" hspace="4" width="320"><img
src="img_1037s.jpg" alt="The Kitchen" border="4"
height="240" hspace="4" width="320"></p>
</center>
<center>
<table cols="1" width="680">
<tbody>
<tr align="CENTER" valign="CENTER">
<td width="50%">
<center><b>The Kitchen</b></center>
</td>
</tr>
</tbody>
</table>
</center>
<center>
<p><img src="img_1042s.jpg" alt="Some Help Cook"
border="4" height="240" hspace="4" width="320"><img
src="img_1043s.jpg" alt="While Others Help Clean"
border="4" height="240" hspace="4" width="320"></p>
</center>
<center>
<table cols="2" width="680">
<tbody>
<tr align="CENTER" valign="CENTER">
<td width="50%">
<center><b>Some Help Cook...</b></center>
</td>
<td width="50%">
<center><b>... While Others Help Clean</b></center>
</td>
</tr>
</tbody>
</table>
</center>
<center>
<p><img src="img_1064s.jpg" alt="The Trail Around the
Lake" border="4" height="240" hspace="4" width="320"><img
src="img_1063s.jpg" alt="The Hike" border="4"
height="240" hspace="4" width="320"></p>
</center>
<center>
<table cols="2" width="680">
<tbody>
<tr align="CENTER" valign="CENTER">
<td width="50%">
<center><b>The Trail Around the Lake</b></center>
</td>
<td width="50%">
<center><b>The Hike</b></center>
</td>
</tr>
</tbody>
</table>
</center>
<center>
<p><img src="img_1065s.jpg" alt="The White Cedar"
border="4" height="240" hspace="4" width="320"><img
src="img_1062s.jpg" alt="Mauthe Lake" border="4"
height="240" hspace="4" width="320"></p>
</center>
<center>
<table cols="2" width="680">
<tbody>
<tr align="CENTER" valign="CENTER">
<td width="50%">
<center><b>"The White Cedar"</b></center>
</td>
<td width="50%">
<center><b>Mauthe Lake</b></center>
</td>
</tr>
</tbody>
</table>
</center>
<ul>
<li> <b><font face="Arial,Helvetica"><font size="-2"><a
href="#BSA">TOP OF PAGE</a></font></font></b></li>
</ul>
<center>
<p><br>
<b><font size="+2">"Camp Seton"</font></b> <br>
<b>June 25-27, 2010</b> </p>
<p><img src="img_2982.jpg" border="4" height="240"
hspace="4" width="320"><img src="img_2984.jpg"
alt="Wisconsin River Canoeing-May 14-16, 2010"
border="4" height="240" hspace="4" width="320"></p>
</center>
<center>
<table cols="2" width="680">
<tbody>
<tr>
<td><br>
</td>
<td><br>
</td>
</tr>
</tbody>
</table>
</center>
<center>
<p><img src="img_3009c.jpg" border="4" height="240"
hspace="4" width="320"><img src="img_3010c.jpg"
border="4" height="240" hspace="4" width="320"> <br>
</p>
<p><img src="img_3012c.jpg" border="4" height="240"
hspace="4" width="320"><img src="img_3013c.jpg"
border="4" height="240" hspace="4" width="320"> <br>
</p>
<p><img src="img_3015c.jpg" border="4" height="240"
hspace="4" width="320"><img src="img_3025c.jpg"
border="4" height="240" hspace="4" width="320"> <br>
</p>
<p><img src="img_3027c.jpg" border="4" height="240"
hspace="4" width="320"> <br>
</p>
<p><img src="img_3030c.jpg" border="4" height="486"
hspace="4" width="648"></p>
</center>
<ul>
<li> <b><font face="Arial,Helvetica"><font size="-2"><a
href="#BSA">TOP OF PAGE</a></font></font></b></li>
</ul>
<center><b><font size="+2">Wisconsin River Canoeing</font></b>
<br>
<b>May 14-16, 2010</b> <br>
<p><img src="10-05-15_t53_dscn2789e.jpg" border="4"
height="240" hspace="4" width="320"><img
src="10-05-15_t53_049e.jpg" alt="Wisconsin River
Canoeing-May 14-16, 2010" border="4" height="240"
hspace="4" width="317"></p>
</center>
<center>
<table cols="2" width="680">
<tbody>
<tr align="CENTER" valign="CENTER">
<td width="50%"> </td>
<td width="50%"> </td>
</tr>
</tbody>
</table>
</center>
<center>
<p><img src="10-05-15_t53_050e.jpg" alt="Wisconsin River
Canoeing-May 14-16, 2010" border="4" height="240"
hspace="4" width="320"><img
src="10-05-15_t53_051e.jpg" alt="Wisconsin River
Canoeing-May 14-16, 2010" border="4" height="240"
hspace="4" width="320"></p>
</center>
<center>
<table cols="2" width="680">
<tbody>
<tr align="CENTER" valign="CENTER">
<td width="50%"> </td>
<td width="50%"> </td>
</tr>
</tbody>
</table>
</center>
<center>
<p><img src="10-05-15_t53_058e.jpg" alt="Wisconsin River
Canoeing-May 14-16, 2010" border="4" height="427"
hspace="4" width="320"></p>
</center>
<center>
<table cols="2" width="680">
<tbody>
<tr align="CENTER" valign="CENTER">
<td width="50%"> </td>
<td width="50%"> </td>
</tr>
</tbody>
</table>
</center>
<center>
<p><img src="10-05-15_t53_055e.jpg" alt="Wisconsin River
Canoeing-May 14-16, 2010" border="4" height="240"
hspace="4" width="320"><img
src="10-05-15_t53_059e.jpg" alt="Wisconsin River
Canoeing-May 14-16, 2010" border="4" height="240"
hspace="4" width="320"></p>
</center>
<center>
<table cols="2" width="680">
<tbody>
<tr align="CENTER" valign="CENTER">
<td width="50%"> </td>
<td width="50%"> </td>
</tr>
</tbody>
</table>
</center>
<center>
<p><img src="10-05-15_t53_061e.jpg" alt="Wisconsin River
Canoeing-May 14-16, 2010" border="4" height="492"
hspace="4" width="656"></p>
</center>
<center>
<table cols="2" width="680">
<tbody>
<tr align="CENTER" valign="CENTER">
<td width="50%"> </td>
<td width="50%"> </td>
</tr>
</tbody>
</table>
</center>
<center>
<p><img src="10-05-15_t53_dscn2796e.jpg" border="4"
height="492" hspace="4" width="656"></p>
</center>
<center>
<table cols="2" width="680">
<tbody>
<tr align="CENTER" valign="CENTER">
<td width="50%"> </td>
<td width="50%"> </td>
</tr>
</tbody>
</table>
</center>
<br>
<ul>
<li> <b><font face="Arial,Helvetica"><font size="-2"><a
href="#BSA">TOP OF PAGE</a></font></font></b><br>
</li>
</ul>
<center><b><font size="+2"></font></b>
<center><a name="High"></a><b><font size="+2">High
Adventure</font></b> <br>
<b>June 2013</b>
<p><b>In the summer of 2013 we sent a crew to Philmont
Scout Ranch in New Mexico. <br>
</b></p>
<img alt="Ready to Travel" src="T053P-026s.jpg"
border="4" height="489" hspace="4" width="652"><br>
<table align="center" border="0" cellpadding="2"
cellspacing="2" width="652">
<tbody>
<tr>
<td align="center" valign="middle"><b>Ready to
Travel</b><br>
</td>
</tr>
</tbody>
</table>
<br>
<img alt="On the Trail" src="T053P-IMG_0642s.jpg"
border="4" height="240" hspace="4" width="320"><img
alt="Fabulous Scenery" src="T053P-IMG_1322s.jpg"
border="4" height="240" hspace="4" width="320"><br>
<table border="0" cellpadding="2" cellspacing="2"
width="652">
<tbody>
<tr>
<td align="center" valign="middle" width="50%"><b>On
the Trail</b><br>
</td>
<td align="center" valign="middle" width="50%"><b>Fabulous
Scenery</b><br>
</td>
</tr>
</tbody>
</table>
<p><b><br>
</b><img alt="Trail Point" src="T053P-IMG_0799s.jpg"
border="4" height="240" hspace="4" width="320"><img
alt="Resting for the Climb"
src="T053P-IMG_0693s.jpg" border="4" height="240"
hspace="4" width="320"></p>
</center>
<table align="center" border="0" cellpadding="2"
cellspacing="2" width="652">
<tbody>
<tr>
<td align="center" valign="middle" width="50%"><b>Trail
Point</b><br>
</td>
<td align="center" valign="middle" width="50%"><b>Resting
for the Climb</b><br>
</td>
</tr>
</tbody>
</table>
<b><font size="+2"></font></b><br>
<b><font size="+2"><br>
<img alt="Climbing" src="T053P-IMG_0687s.jpg"
border="4" height="320" hspace="4" width="240"><br>
<br>
</font></b><br>
<b><font size="+2"><img
src="T053P-IMG_20130629_131427_081s.jpg" alt="We
All Made It!" border="4" height="367" hspace="4"
width="652"><br>
</font></b>
<table align="center" border="0" cellpadding="2"