aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/cgeo/geocaching/test/mock/GC2CJPF.html
blob: 432ee5a6664191fb7c7204763bbe4d886f1aec95 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254


<!DOCTYPE html>
<html lang="en" class="no-js">
<head id="ctl00_Head1"><meta charset="utf-8" /><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /><title>
	GC2CJPF Kinderwald KiC (Multi-cache) in Niedersachsen, Germany created by Tom03
</title><meta name="DC.title" content="Geocaching - The Official Global GPS Cache Hunt Site" /><meta id="ctl00_ogUrl" property="og:url" content="http://www.geocaching.com/seek/cache_details.aspx?wp=GC2CJPF&amp;title=kinderwald-kic" /><meta name="twitter:card" content="summary_large_image" /><meta name="twitter:title" content="Geocaching: the anytime, anywhere outdoor adventure game." /><meta name="twitter:description" content="There are millions of geocaches worldwide and probably even some near you right now. Visit Geocaching.com to see just how many geocaches are nearby and to get the free Official Geocaching app." /><meta name="twitter:image:src" content="https://www.geocaching.com/play/Content/images/preview-lg.jpg" /><meta name="author" content="Geocaching" /><meta name="DC.creator" content="Geocaching" /><meta name="Copyright" content="Copyright (c) 2000-2015 Groundspeak, Inc. All Rights Reserved." /><!-- Copyright (c) 2000-2015 Groundspeak, Inc. All Rights Reserved. --><meta name="description" content="Geocaching is a treasure hunting game where you use a GPS to hide and seek containers with other participants in the activity. Geocaching.com is the listing service for geocaches around the world." /><meta name="DC.subject" content="Geocaching is a treasure hunting game where you use a GPS to hide and seek containers with other participants in the activity. Geocaching.com is the listing service for geocaches around the world." /><meta http-equiv="imagetoolbar" content="no" /><meta name="distribution" content="global" /><meta name="MSSmartTagsPreventParsing" content="true" /><meta name="rating" content="general" /><meta name="revisit-after" content="1 days" /><meta name="robots" content="all" /><meta name="p:domain_verify" content="107f8f596a30ff1ea307df82db696a5e" /><link href="//fonts.googleapis.com/css?family=Noto+Sans:400,700&amp;subset=latin,latin-ext" rel="stylesheet" type="text/css" /><link rel="icon" href="/favicon.ico" /><link rel="shortcut icon" href="/favicon.ico" /><link rel="apple-touch-icon" href="/apple-touch-icon.png" /><link href="/content/coreCSS?v=xlCPoEz68wQ4cUA5LgXYDZncPHZ3qb_7rapXvyqARsc1" rel="stylesheet"/>
<link href="/css/jqueryui1104/jqUI?v=G2XN-0HsvYJqSZehzmbzhJiIBnEZ9PaVHVjIweqiSx41" rel="stylesheet"/>
<link rel="stylesheet" type="text/css" media="print" href="../css/tlnMasterPrint.css" /><script src="/bundle/modernizer?v=q--nrqGQx_uxNYSvw1AFPQRWLPih7RGk2o0lu9veYaY1"></script>
<script src="/bundle/coreJS?v=uKjd3XRiFC1C29gkUc0JuDRCF6PuUu7R8PpzGjgXDEc1"></script>


    <script type="text/javascript">

        var googletag = googletag || {};
        googletag.cmd = googletag.cmd || [];

        var _gaq = _gaq || [];

        (function () {
            var gads = document.createElement('script');
            gads.async = true;
            gads.type = 'text/javascript';
            var useSSL = 'https:' == document.location.protocol;
            gads.src = (useSSL ? 'https:' : 'http:') + '//www.googletagservices.com/tag/js/gpt.js';
            var node = document.getElementsByTagName('script')[0];
            node.parentNode.insertBefore(gads, node);
        })();

        (function (i, s, o, g, r, a, m) {
            i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {
                (i[r].q = i[r].q || []).push(arguments);
            }, i[r].l = 1 * new Date();
            a = s.createElement(o),
                m = s.getElementsByTagName(o)[0];
            a.async = 1; a.src = g;
            m.parentNode.insertBefore(a, m);
        })(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');

        (function () {

            var ga = document.createElement('script');
            ga.src = ('https:' == document.location.protocol ?
                    'https://ssl' : 'http://www') +
                '.google-analytics.com/ga.js';
            ga.setAttribute('async', 'true');
            document.documentElement.firstChild.appendChild(ga);

        })();

    </script>

    
    
     
    <link href="/css/fancybox/jquery.fancybox.css" rel="stylesheet" type="text/css" />
    <link href="/js/jquery_plugins/icalendar/jquery.icalendar.css" rel="stylesheet" type="text/css" />
    <link href="/js/jquery_plugins/qtip/jquery.qtip.css" rel="stylesheet" type="text/css" />
    <link rel="stylesheet" type="text/css" media="all" href="/static/js/leaflet/0.7.2/leaflet.css" />
    <link rel="stylesheet" type="text/css" media="screen" href="/css/seek/beta.css" />
    <script type="text/javascript" src="/static/js/leaflet/0.7.2/leaflet.js"></script>
    <script type="text/javascript">
        var userToken = null,
                urlParams = {},
                mapLatLng = null,
                cmapAdditionalWaypoints = [],
                initalLogs = null, totalLogs = 0, includeAvatars = false;

        (function () {
            var e,
            d = function (s) { return decodeURIComponent(s.replace(/\+/g, " ")); },
            q = window.location.search.substring(1),
            r = /([^&=]+)=?([^&]*)/g;

            while (e = r.exec(q)) {
                urlParams[d(e[1])] = d(e[2]);
            }
        })();
    </script>
<script>function utmx_section(){}function utmx(){}(function(){var k='3682814-19',d=document,l=d.location,c=d.cookie; if(l.search.indexOf('utm_expid='+k)>0)return; function f(n){if(c){var i=c.indexOf(n+'=');if(i>-1){var j=c.indexOf(';',i);return escape(c.substring(i+n.length+1,j<0?c.length:j))}}}var x=f('__utmx'),xx=f('__utmxx'),h=l.hash;d.write('<sc'+'ript src=" '+'http'+(l.protocol=='https:'?'s://ssl':'://www')+'.google-analytics.com/ga_exp.js?'+'utmxkey='+k+'&utmx='+(x?x:'')+'&utmxx='+(xx?xx:'')+'&utmxtime='+new Date().valueOf()+(h?'&utmxhash='+escape(h.substr(1)):'')+'" type="text/javascript" charset="utf-8"><\/sc'+'ript>')})();</script><script>utmx('url','A/B');</script><meta name="og:type" content="article" property="og:type" /><meta name="fb:app_id" content="251051881589204" property="fb:app_id" /><meta name="og:description" content="Use a smartphone or GPS device to navigate to the provided coordinates, which will then lead you to one or more locations. Look for a small hidden container. When you find it, write your name and date in the logbook. If you take something from the container, leave something in exchange. The terrain is 2 and difficulty is 2.5 (out of 5)." property="og:description" /><meta name="og:title" content="Kinderwald KiC" property="og:title" /><meta name="og:image" content="http://www.geocaching.com/images/facebook/wpttypes/3.png" property="og:image" /><meta name="description" content="Kinderwald KiC (GC2CJPF) was created by Tom03 on 07/31/2010. It&#39;s a Small size geocache, with difficulty of 2.5, terrain of 2. It&#39;s located in Niedersachsen, Germany.Von Nachwuchs-Cachern f&#252;r Nachwuchs-Cacher. Kleiner Multi &#252;ber 7 Stationen. L&#228;nge ca. 1 km + 1km f&#252;r den R&#252;ckweg. Die ZS befinden sich alle am KLEINEN BACH innerhalb des Kinderwaldes." /><link rel="canonical" href="http://www.geocaching.com/seek/cache_details.aspx?guid=73246a5a-ebb9-4d4f-8db9-a951036f5376" /><link rel="alternate" href="../datastore/rss_galleryimages.ashx?guid=73246a5a-ebb9-4d4f-8db9-a951036f5376" type="application/rss+xml" title="[Gallery Images]" id="GalleryImages" /></head>

<body background="http://www.blafoo.de/images/Kinderwald.jpg" class="CacheDetailsPage">
    <form name="aspnetForm" method="post" action="/geocache/GC2CJPF_kinderwald-kic" id="aspnetForm">
<div>
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
<input type="hidden" name="__VIEWSTATEFIELDCOUNT" id="__VIEWSTATEFIELDCOUNT" value="3" />
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="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" />
<input type="hidden" name="__VIEWSTATE1" id="__VIEWSTATE1" value="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" />
<input type="hidden" name="__VIEWSTATE2" id="__VIEWSTATE2" value="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" />
</div>

<script type="text/javascript">
//<![CDATA[
var theForm = document.forms['aspnetForm'];
if (!theForm) {
    theForm = document.aspnetForm;
}
function __doPostBack(eventTarget, eventArgument) {
    if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
        theForm.__EVENTTARGET.value = eventTarget;
        theForm.__EVENTARGUMENT.value = eventArgument;
        theForm.submit();
    }
}
//]]>
</script>


<script src="/WebResource.axd?d=pynGkmcFUV13He1Qd6_TZETFLbdR8wwRMdub1eDU5ILCHE7OhotblLUuaNwx3HQ7rYen0g2&amp;t=635418606520000000" type="text/javascript"></script>


<script src="/ScriptResource.axd?d=uHIkleVeDJf4xS50Krz-yEJRbXY2x1dOBEdM7W-QkNpgaumdwaefPzMErSeG_W29-lHX6vl5G7uDafHaYWCx8Z9aLlo8tZwVtV42ISp6LhT6LbxuVUWMo5GyApWAyPOqkSkf1vCyntgT-PmPv-C6FWxsbWo1&amp;t=7e632e9f" type="text/javascript"></script>
<script src="/ScriptResource.axd?d=Jw6tUGWnA15YEa3ai3FadDbNvwkajNGIHz7aGm4w_MLRMuZ5hwlk3bfOsTs3E4cZZ4ktnTFE_MzciTx4exD15JXabrPKGazf6xj6fW1A8vXJoc3OCqf4cg_BDlVl8fQEsQiziDh4kHnJRWZEQotwuLoezlg1&amp;t=7e632e9f" type="text/javascript"></script>
<script src="/ScriptResource.axd?d=5TF9rjyH0DznFY9gD5BdY1HLewcDfzfseFK99ZUwCjDeCn2_QVB3fx_NtZPGiXND9Z0DDARPZaAgCEP6zsamDx9aJs8_cGNcvJFmZqw8ne-z1XWmuD8tlQOc5-rrbS-4-8AcJxJR1sIpX-vnwaEMYRCNico1" type="text/javascript"></script>
<script src="/ScriptResource.axd?d=u31MrP-1FWRJy7AZgNOKuXnGB_YpfQKeE5Q7FIks8TL1osQNyCL8xVCsRqzHjXyzLPAuuxfdmUfd9lYO0FVPc983Cty7Hhj_2UETX8XCUM5EkKh_8PKfZg_3dH39YVfEWX8-QvaPa6nDqi8DpAUqiqHuuS7PxzxoOydmg9BLsY0tGuQhKjRUwx5tht2THIYR9evJ_7Vi-fsiUst9CO7JomLViOuhMQxBLOrjESDcULiXkOeXjKzR3NLIzw6hqcXKdUb-4nd9gwCfVmUSasHf9oZITGzd28fPHYe5NqRPSqGJOXPgIsIc2CXzGxlzh6ybas-U1KRQRwOvBACm9oK-y-BFcpCA-_bvEzJW3lV2rtrZ3-JJenUhlpKIJEimPKZjy7DiwwHR3ySMYXf9UCqu2KGpLXZSVCUIik69OpXAg6qDAEyxsq1w7gfNTfZmudsdZudJJxbJ1Js3excyNRkRq3P79-QyWHhJLPARUP0Wj-xNqhbYIRTzK8xExxlM1-HMQefoyEgC8Np1P5F8ZcYXmCTQp-bQOvBmI5bJr4RX1uhSTMXK8_Zvy3cVJojOy-bFsDd7J8DpD2ldpgxdCQrukAVC-dieNk06wzmY-YBaaxoaMG_MJLAYSB4pw_GMgzGUwJi5mBYuzxy_71kgsWeWyZR6GHiuLKqJ4CyD_W8f_Jwek6Pl0" type="text/javascript"></script>
<script src="../seek/js/cachedetails.js" type="text/javascript"></script>
<script src="../js/latlng.js" type="text/javascript"></script>
<div>

	<input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="C05D5804" />
</div>
        <script type="text/javascript">
//<![CDATA[
Sys.WebForms.PageRequestManager._initialize('ctl00$uxMainScriptManager', 'aspnetForm', [], [], [], 90, 'ctl00');
//]]>
</script>

        <div id="Top" class="SkipLinks">
            <a id="ctl00_hlSkipLinksNavigation" accesskey="n" title="Skip to Navigation" href="#Navigation">Skip to Navigation</a>
            <a id="ctl00_hlSkipLinksContent" accesskey="c" title="Skip to Content" href="#Content">Skip to Content</a>
        </div>
        <!--[if lte IE 8]>
                <div class="WarningMessage PhaseOut">
                    <p>Groundspeak is phasing out support for older browsers. Visit the <a href="http://support.groundspeak.com/index.php?pg=kb.page&id=215" title="Browser Support Information">Help Center</a> for more information.</p>
                </div>
            <![endif]-->
        
        
        <div class="PrintOnly">
            <p>
                <img src="/images/logo_print_bw.png" alt="Geocaching.com" />
            </p>
            <hr />
        </div>
        <header id="ctl00_siteHeader">
            <div class="container">
                <h1 class="Logo">
                    <a href="../" id="ctl00_HDHomeLink" title="Geocaching" accesskey="h">
                    </a>
                </h1>
                <div class="ProfileWidget">
                    
                    <div id="ctl00_divSignedIn">
                        <ul class="logged-in-user">
                            <li class="li-user">
                                <a id="ctl00_hlHeaderAvatar" accesskey="p" title="Your Profile" class="avatar" href="../my/"><img title="Your Profile" src="https://www.geocaching.com/images/default_avatar.jpg" alt="" style="border-width:0px;" /></a>
                                <span class="li-user-info">
                                    <a href="/my/default.aspx" title="View Your Profile" class="SignedInProfileLink">ra_sch</a>
                                    <span>1,298 Finds</span>
                                </span>
                                <button type="button" class="li-user-toggle">
                                    <svg width="12px" height="7px" viewBox="0 0 12 7" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
                                        <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
                                            <g class="arrow" transform="translate(-1277.000000, -25.000000)" stroke="#FFFFFF" fill="#FFFFFF">
                                                <path d="M1280.43401,23.3387013 C1280.20315,23.5702719 1280.20315,23.945803 1280.43401,24.1775793 L1284.82138,28.5825631 L1280.43401,32.9873411 C1280.20315,33.2191175 1280.20315,33.5944429 1280.43401,33.8262192 C1280.54934,33.9420045 1280.70072,34 1280.8519,34 C1281.00307,34 1281.15425,33.9422102 1281.26978,33.8262192 L1286.07462,29.0018993 C1286.30548,28.7701229 1286.30548,28.3947975 1286.07462,28.1630212 L1281.26958,23.3387013 C1281.03872,23.106925 1280.66487,23.106925 1280.43401,23.3387013 Z" id="Dropdown-arrow" sketch:type="MSShapeGroup" transform="translate(1283.254319, 28.582435) scale(1, -1) rotate(-90.000000) translate(-1283.254319, -28.582435) "></path>
                                            </g>
                                        </g>
                                    </svg>
                                </button>                       
                                <ul>     
                                    <li class="li-settings">
                                        <a title="Edit Account Settings" class="icon-settings" href="/account/settings">Settings</a>
                                    </li>                           
                                    <li class="li-signout">
                                        <a id="ctl00_hlSignOut" accesskey="s" class="sign-out" href="https://www.geocaching.com/login/default.aspx?RESET=Y&amp;redir=http%3a%2f%2fwww.geocaching.com%2fseek%2fcache_details.aspx%3fwp%3dGC2CJPF%26title%3dkinderwald-kic">Sign Out</a>
                                    </li>
                                </ul>
                            </li>               
                            <li class="li-messagecenterheaderwidget li-messages" id="messagecenterheaderwidget">
                                <a class="message-center-icon" href="/account/messagecenter">
                                    <span class="msg-center-link-text">Messages</span>
                                </a>
                            </li>
                            <li class="li-upgrade">
                                
                                   
                            </li>
                        </ul>
                    </div>
                </div>

            </div>
        </header>
        <nav id="Navigation">
            <div class="container">
                <a href="../" id="ctl00_A1" class="Logo" title="Geocaching" accesskey="h">
                    <img src="/images/tlnMasters/logo-geocaching@2x.png" alt="Geocaching" width="195" />
                </a>
                <ul class="Menu">
                    <li>
                        <a id="ctl00_hlNavLearn" accesskey="1" class="Dropdown" href="../guide/">Learn</a>
                        <ul class="SubMenu">
                            <li>
                                <a id="ctl00_hlSubNavGeocaching101" accesskey="i" href="../guide/">Geocaching 101</a></li>
                            <li>
                                <a id="ctl00_hlSubNavGeocaching2Minutes" href="../videos/default.aspx#cat=PL939C3CBDC2F2F385&amp;vid=1YTqitVK-Ts">Videos</a></li>
                        </ul>
                    </li>
                    <li>
                        <a id="ctl00_hlNavPlay" accesskey="2" class="Dropdown" href="../play/search/">Play</a>
                        <ul class="SubMenu">
                            <li>
                                <a id="ctl00_hlSubNavFind" accesskey="d" href="../play/search/">Find a Geocache</a></li>
                            <li>
                                <a id="ctl00_hlSubNavHide" accesskey="d" href="../play/hide/">Hide a Geocache</a></li>                 
                            <li>
                                <a id="ctl00_hlSubNavMap" accesskey="/" href="../map/">View Geocache Map</a></li>
                            <li id="ctl00_liSubNavLogCache">
                                <a id="ctl00_hlSubNavLogCache" href="../my/recentlyviewedcaches.aspx">Log a Geocache</a></li>
                            <li>
                                <a id="ctl00_hlSubNavTrackables" accesskey="e" href="../track/">Find Trackables</a></li>
                            <li>
                                <a id="ctl00_hlSubNavGeoTours" href="../adventures/geotours">GeoTours</a>
                            </li>
                            <li id="ctl00_liSubNavPocketQueries">
                                <a id="ctl00_hlSubNavPocketQueries" accesskey="9" href="../pocket/">Pocket Queries</a></li>
                            <li id="ctl00_liSubNavFieldNotes">
                                <a id="ctl00_hlSubNavFieldNotes" accesskey="0" href="../my/fieldnotes.aspx">Field Notes</a></li>
                        </ul>
                    </li>
                    <li>
                        <a id="ctl00_hlNavCommunity" accesskey="3" class="Dropdown" href="../forums/">Community</a>
                        <ul class="SubMenu">
                            
                                <li>
                                    <a id="ctl00_hlSubNavTellaFriend" accesskey="-" href="../account/referafriend">Refer a Friend</a>
                                </li>
                            
                            <li>
                                <a id="ctl00_hlSubNavVolunteers" accesskey="+" href="../volunteers/">Volunteers</a></li>
                            <li>
                                <a id="ctl00_hlSubNavDiscussionForums" accesskey="f" href="../forums/">Discussion Forums</a></li>
                            <li>
                                <a id="ctl00_hlSubNavBlog" accesskey="b" rel="external" href="http://blog.geocaching.com/">Blog</a></li>
                            <li>
                                <a id="ctl00_hlSubNavEvents" accesskey="v" href="../calendar/">Events</a></li>
                        </ul>
                    </li>
                    <li>
                        <a id="ctl00_hlNavShop" accesskey="4" class="Dropdown" href="http://shop.geocaching.com/?utm_source=Geocaching&amp;utm_medium=Links&amp;utm_content=Header&amp;utm_campaign=Geocaching+Links">Shop</a>
                        <ul class="SubMenu">
                            <li>
                                <a id="ctl00_hlSubNavShop" accesskey="j" rel="external" href="http://shop.geocaching.com/?utm_source=Geocaching&amp;utm_medium=Links&amp;utm_content=Header&amp;utm_campaign=Geocaching+Links">USA Shop</a></li>
                            <li>
                                <a id="ctl00_hlSubNavIntlRetailers" rel="external" href="http://shop.geocaching.com/default/international-retailers/">International Retailers</a></li>
                            <li>
                                <a id="ctl00_hlBecomePremium" href="https://payments.geocaching.com/?upgrade=true">Become a Premium Member</a>
                            </li>
                        </ul>
                    </li>             
                </ul>
            </div>
        </nav>
        <section id="Content">
            
            <div class="container">
                <div id="ctl00_divBreadcrumbs" class="BreadcrumbWidget span-24 last">
                    <!--<p>
                        <span id="ctl00_Breadcrumbs"><span><a title="Geocaching - The Official Global GPS Cache Hunt Site" href="/">Geocaching</a></span><span> &gt; </span><span><a title="Hide and Seek A Geocache" href="/seek/default.aspx">Hide and Seek A Geocache</a></span><span> &gt; </span><span>Geocache Details</span></span>
                    </p>-->
                    
                </div>
                <div id="ctl00_divContentMain" class="span-24 last">
                    
    
    
    <div id="ctl00_ContentBody_CoordInfoLinkControl1_uxCoordInfoLinkPanel" class="CoordInfoLinkWidget">
	
    <p>
        <a href="#" class="CoordInfoLink">
            <span id="ctl00_ContentBody_CoordInfoLinkControl1_uxCoordInfoCode" class="CoordInfoCode">GC2CJPF</span>
            <span class="arrow">&#9660;</span> </a>
    </p>

</div>
<div id="dlgClipboard">
    <input type="text" class="TextFormat" />
    <a href="#" onclick="$('#dlgClipboard').hide();return false;" title="Close" class="Close">
        x</a>
</div>
<script type="text/javascript">
    $("a.CoordInfoLink").click(function (e) {
        e.preventDefault();

        $("#dlgClipboard")
                    .show()
                    .position({
                        of: $("a.CoordInfoLink"),
                        my: "right top",
                        at: "right bottom",
                        offset: "0 5"
                    })
                    .find("input")
                        .val('http://coord.info/' + $('.CoordInfoCode').text())
                        .focus()
                        .select();

        $(document).mouseup(function (e) {
            if ($(e.target).parent("div#dlgClipboard").length == 0) {
                $(this).unbind(e);
                $("div#dlgClipboard").hide();
            }
        });

        return false;
    });

 
</script>


    <div class="span-17">
        
        <div class="span-17 last BottomSpacing" id="cacheDetails">
            <p class="cacheImage">
                <a href="/about/cache_types.aspx" target="_blank" title="About Cache Types"><img src="/images/WptTypes/3.gif" alt="Multi-cache" title="Multi-cache" /></a>
            </p>
            
            <h2 class="NoBottomSpacing">
                <span id="ctl00_ContentBody_CacheName">Kinderwald KiC</span>
            </h2>
            <div class="minorCacheDetails Clear">
                <div id="ctl00_ContentBody_mcd1">
                    A cache by <a href="http://www.geocaching.com/profile/?guid=9a28b2fb-bce9-481f-87bc-7c5f4bafe723&wid=73246a5a-ebb9-4d4f-8db9-a951036f5376&ds=2">Tom03</a>
                </div>
                <div id="ctl00_ContentBody_mcd2">
                    Hidden
                    :
                    2010-07-31
                    
                </div>
                <div>
                    
                </div>
            </div>
        </div>
        <div id="ctl00_ContentBody_diffTerr" class="CacheStarLabels span-6 BottomSpacing">
            
            <dl>
                <dt>
                    Difficulty:</dt>
                <dd>
                    <span id="ctl00_ContentBody_uxLegendScale" title="(1 is easiest, 5 is hardest)"><img src="http://www.geocaching.com/images/stars/stars2_5.gif" alt="2.5 out of 5" /></span>
                </dd>
            </dl>
            <dl>
                <dt>
                    Terrain:</dt> 
                <dd>
                    <span id="ctl00_ContentBody_Localize12" title="(1 is easiest, 5 is hardest)"><img src="http://www.geocaching.com/images/stars/stars2.gif" alt="2 out of 5" /></span>
                </dd>
            </dl>
            
        </div>
        <div id="ctl00_ContentBody_size" class="CacheSize span-5">
            
            <p class="AlignCenter">
                Size:&nbsp;<span class="minorCacheDetails"><img src="/images/icons/container/small.gif" alt="Size: small" title="Size: small" />&nbsp<small>(small)</small></span>
            </p>
            
        </div>
        <div class="span-6 right last">
            
            
                <div class="favorite right">
                    <a id="uxFavContainerLink" href="javascript:void(0);">
                        <div class="favorite-container"><!-- TODO! -->
                            <span class="favorite-value">
                                22 
                            </span>
                            Favorites
                        </div>
                    </a>
                    <div class="favorite-dropdown">
                        
                        <ul>
                            <li>
                                <img id="imgFavoriteScore" src="/images/loading3.gif" width="20" height="20" alt="Loading" title="Loading"><span id="uxFavoriteScore">&nbsp;</span>
                            </li>
                            <li>
                                <a id="hlViewWhoFavorited" title="View Who Favorited this Cache" href="/seek/cache_favorited.aspx?guid=73246a5a-ebb9-4d4f-8db9-a951036f5376">View Who Favorited this Cache</a>
                            </li>
                            <li>
                                <a id="hlAboutFavorites" title="About Favorites" href="http://support.groundspeak.com/index.php?pg=kb.page&amp;id=287" target="_blank">About Favorites</a>
                            </li>
                        </ul>
                    </div>
                </div>
            
            
        </div>
        
        <p class="Clear">

            <a id="ctl00_ContentBody_uxCacheUrl" title="Related Web Page" href="http://www.kinderwald.de/">Related Web Page</a>

        </p>
        
        
        
        <div id="ctl00_ContentBody_CacheInformationTable" class="CacheInformationTable">
            <div class="LocationData FloatContainer">
                <div class="span-9">
                    <p class="NoBottomSpacing">
                        <a href="#" class="edit-cache-coordinates" id="uxLatLonLink" title="Correct these coordinates">
                            <strong>
                                <span id="uxLatLon">N 52° 25.504 E 009° 39.852</span></strong>
                        </a>
                        <br />
                        <span id="ctl00_ContentBody_LocationSubPanel">
                            UTM: 32U E 545164 N 5808524<br />
                        </span>
                        <a id="ctl00_ContentBody_lnkConversions" title="Other Conversions" href="/wpt/?lat=52.425067&amp;lon=9.6642&amp;detail=1" target="_blank">Other Conversions</a>
                    </p>
                </div>
                <div class="span-7 last AlignRight">
                    <span id="ctl00_ContentBody_Location">In Niedersachsen, Germany</span><br />
                    <span id="lblDistFromHome"><img src="/images/icons/compass/N.gif" alt="N" style="vertical-align:text-bottom" />&nbsp;N 308.9&nbsp;km from your home location</span>
                </div>
            </div>
            <div class="DownloadLinks">
                <dl id="Print">
                    <dt class="label">
                        <span id="ctl00_ContentBody_uxPrintHeader">Print</span>:
                    </dt>
                    <dd>              
                        <a id="ctl00_ContentBody_lnkPrintFriendly" href="../seek/cdpf.aspx?guid=73246a5a-ebb9-4d4f-8db9-a951036f5376" target="_blank">No Logs</a>
                        <a id="ctl00_ContentBody_lnkPrintFriendly5Logs" href="../seek/cdpf.aspx?guid=73246a5a-ebb9-4d4f-8db9-a951036f5376&amp;lc=5" target="_blank">5 Logs</a>
                        <a id="ctl00_ContentBody_lnkPrintFriendly10Logs" href="../seek/cdpf.aspx?guid=73246a5a-ebb9-4d4f-8db9-a951036f5376&amp;lc=10" target="_blank">10 Logs</a>
                        <a id="ctl00_ContentBody_lnkPrintDirectionsSimple" class="DrivingDirections" href="http://maps.google.com/maps?f=d&amp;hl=en&amp;saddr=49.7332,8.569667 (Home Location)&amp;daddr=52.425067,9.6642(Kinderwald+KiC)" target="_blank">Driving Directions</a>
                    </dd>
                </dl> 
                <dl id="ctl00_ContentBody_uxPrintPDFSection" style="display: none;">
                    <dt>
                        PDF:
                    </dt>
                    <dd>
                        <a id="ctl00_ContentBody_lnkPDFPrintNoLogs" href="javascript:pl(0);">No Logs</a>
                        <a id="ctl00_ContentBody_lnkPDFPrint5Logs" href="javascript:pl(5);">5 Logs</a>
                        <a id="ctl00_ContentBody_lnkPDFPrint10Logs" href="javascript:pl(10);">10 Logs</a>
                    </dd>
                </dl>
                <dl id="Download">
                    <dt class="label">
                        <span id="ctl00_ContentBody_uxDownloadLabel">Download</span>:
                    </dt>
                    <dd>
                        <a id="ctl00_ContentBody_lnkDownloads" title="Read about waypoint downloads" href="/software/default.aspx">Read about waypoint downloads</a>
                    </dd>
                    <dt></dt>
                    <dd>
                        <input type="submit" name="ctl00$ContentBody$btnLocDL" value="LOC waypoint file" id="ctl00_ContentBody_btnLocDL" /><input type="submit" name="ctl00$ContentBody$btnGPXDL" value="GPX file" id="ctl00_ContentBody_btnGPXDL" /><input type="submit" name="ctl00$ContentBody$btnSendToGPS" value="Send to My GPS" onclick="s2gps(&#39;73246a5a-ebb9-4d4f-8db9-a951036f5376&#39;);return false;" id="ctl00_ContentBody_btnSendToGPS" /><input type="submit" name="ctl00$ContentBody$btnSendToPhone" value="Send to My Phone" onclick="s2phone(&#39;GC2CJPF&#39;);return false;" id="ctl00_ContentBody_btnSendToPhone" />
                    </dd>
                </dl>
            </div>
        </div>
        
            <div class="Note Disclaimer">
                <strong>
                    Please note
                </strong>
                Use of geocaching.com services is subject to the terms and conditions <a href="/about/disclaimer.aspx" title="Read Our Disclaimer">in our disclaimer</a>.
            </div>
        
        
            <div class="Note PersonalCacheNote">
                <strong>
                    Personal Cache Note
                </strong>
                <img src="/images/icons/16/help.png" id="pcn_help" class="CacheNoteHelpImg" />
                
                <span id="cache_note"></span>
            </div>
        
        <h3 class="CacheDescriptionHeader">Geocache Description:</h3>
        <div class="UserSuppliedContent">
            
            <span id="ctl00_ContentBody_ShortDescription">Von Nachwuchs-Cachern für Nachwuchs-Cacher.
</span>
            
        </div>
        
        <br />
        <div class="UserSuppliedContent">
            
            <span id="ctl00_ContentBody_LongDescription">Kleiner Multi über 7 Stationen. Länge ca. 1 km + 1km für den Rückweg. Die ZS befinden sich alle am KLEINEN BACH innerhalb des Kinderwaldes. Die Fragen müssen nicht in der aufgeführten Reihenfolge beantwortet werden, ihr könnt auch mit der letzten Frage anfangen !<br />
<br />
Nähere Infos zum Kinderwald gibt es unter <a href="http://www.kinderwald.de/" target="_blank" rel="nofollow">www.kinderwald.de</a><br />
<br />
A. Am Start findet ihr einige Tiere. Wieviele blau-gelbe Punkte hat die grüne Eidechse ?<br />
<br />
B. Folgt dem Weg in Richtung Norden und biegt hinter der Brücke gleich links ab. Nach ein paar Metern<br />
könnt ihr auf der rechten Seite mehrere Tipis sehen, an denen ihr aber vorbei geht. Überquert nun nach ein paar Metern links die Brücke und gelangt auf die kleine Insel wo das Wasser gestaut wird.<br />
Auf der Insel könnt ihr beim großen Zelt einen "Marterpfahl" finden, dort seht ihr eine (lachende) Blume mit roten Blättern. Wieviele Blätter hat die Blume ?<br />
<br />
C. Verlasst die Insel. Auf dem Weg zur nächsten Station kommt ihr in der Kurve an einem großen, allein stehenden Baum vorbei. Was für ein Baum ist das (fünf Buchstaben) ? Hier wird der Buchstabenwert (A=1, B=2,...) des Anfangsbuchstaben benötigt. Evtl. könnt ihr noch die Traumfänger erkennen.<br />
<br />
D. Folgt dem Weg ein Stück. Ihr kommt nach kurzer Zeit zum Plumpsklo, der ehemaligen Villa Kunterbunt. Netterweise hat jemand meinen Namen am Eingang hingeschrieben.... Wieviele Personen können das Klo gleichzeitig benutzen ?<br />
<br />
E. Weiter geht es. Links findet ihr eine weitere (bunte) Brücke. Dort sind wieviele Kindergesichter zu finden ?<br />
<br />
F. Nach ca. 200 Metern kommt ihr zur Seilfähre. An der Seilfähre findet ihr die Antwort (GC= ?)<br />
<br />
G. Gegenüber der Seilfähre befindet sich ein Schaukasten mit Nisthilfen für Insekten. Wieviele rote, parallel zum Boden verlaufende Dachträger hat das Dach ?<br />
<br />
H. Nach weiteren 250 Metern gelangt ihr zur Schafherde. Aus wievielen Mitgliedern besteht die Schafherde ?<br />
<br />
Das Final könnt ihr nun unter<br />
<br />
N 52° 2A.(D+F)CE / E 009° 3(B+1).(F+1)E(G-1) finden.<br />
<br />
Kontrolle: Die Quersumme von ABCDEFGH beträgt 40.<br />
<br />
Die, die sich die Seilfähre nicht zutrauen (oder sie gerade nicht da ist), berechnen F. folgendermaßen:<br />
<br />
F=H+A-B-C<br />
<br />
Über Fotos würde ich mich freuen !<br />
<br />
Viel Spaß !<br />
<br />
P.S. An warmen Tagen Badesachen und Handtuch mitnehmen.</span>
            
        </div>
        
        <p>
            

        </p>
        <p id="ctl00_ContentBody_hints">
            <strong>
                Additional Hints</strong>
            (<a id="ctl00_ContentBody_lnkDH" onclick="dht(this);return false;" title="Decrypt" href="../seek/#">Decrypt</a>) </p><div id="div_hint" class="span-8 WrapFix">
            Qnf Svany vfg hagre Fgrvara</div><div id='dk' style="display: block;" class="span-9 last">
            <span id="ctl00_ContentBody_EncryptionKey" class="right"><div class="DecryptionKeyWidget"> <p class="WidgetHeader">Decryption Key</p> <p class="WidgetBody">A|B|C|D|E|F|G|H|I|J|K|L|M<br /> -------------------------<br /> N|O|P|Q|R|S|T|U|V|W|X|Y|Z</p> <p class="WidgetFooter">(letter above equals below, and vice versa)</p></div></span>
        </div>
        <div class="Clear">
        </div>
        
    </div>
    
    
    <div class="span-6 prepend-1 last">
        
        
<div class="CacheDetailNavigation NoPrint">
    
    <a href="/seek/log.aspx?ID=1811409&lcn=1" id="ctl00_ContentBody_GeoNav_logButton" class="Button LogVisit">Log your visit</a>
    <ul>
        <li><a href="/seek/gallery.aspx?guid=73246a5a-ebb9-4d4f-8db9-a951036f5376">View Gallery</a> (21)</li>
        <li><a href="/my/watchlist.aspx?w=1811409">Watch</a> (2)</li>
        <li><a href="/bookmarks/mark.aspx?guid=73246a5a-ebb9-4d4f-8db9-a951036f5376&amp;WptTypeID=3">Bookmark</a></li>
        <li><a href="/bookmarks/ignore.aspx?guid=73246a5a-ebb9-4d4f-8db9-a951036f5376&amp;WptTypeID=3">Ignore</a></li>
    </ul>
    
    
</div>

        
        
        
            <div id="map_preview_canvas" class="TopSpacing" style="width: 228px; height: 175px;">
            </div>
        
        
        
        <div id="ctl00_ContentBody_detailWidget" class="CacheDetailNavigationWidget TopSpacing BottomSpacing">
            
            <h3 class="WidgetHeader">
                Attributes
            </h3>
            <div class="WidgetBody">
                <img src="/images/attributes/wheelchair-no.gif" alt="not wheelchair accessible" title="not wheelchair accessible" width="30" height="30" /> <img src="/images/attributes/motorcycles-no.gif" alt="no motorcycles" title="no motorcycles" width="30" height="30" /> <img src="/images/attributes/winter-yes.gif" alt="available in winter" title="available in winter" width="30" height="30" /> <img src="/images/attributes/firstaid-yes.gif" alt="needs maintenance" title="needs maintenance" width="30" height="30" /> <img src="/images/attributes/available-yes.gif" alt="available 24-7" title="available 24-7" width="30" height="30" /> <img src="/images/attributes/wading-yes.gif" alt="may require wading" title="may require wading" width="30" height="30" /> <img src="/images/attributes/scenic-yes.gif" alt="scenic view" title="scenic view" width="30" height="30" /> <img src="/images/attributes/onehour-yes.gif" alt="takes less than 1  hour" title="takes less than 1  hour" width="30" height="30" /> <img src="/images/attributes/kids-yes.gif" alt="kid friendly" title="kid friendly" width="30" height="30" /> <img src="/images/attributes/dogs-yes.gif" alt="dogs allowed" title="dogs allowed" width="30" height="30" /> <img src="/images/attributes/bicycles-yes.gif" alt="bikes allowed" title="bikes allowed" width="30" height="30" /> <img src="/images/attributes/attribute-blank.gif" alt="blank" title="blank" width="30" height="30" /> <p class="NoBottomSpacing"><small><a href="/about/icons.aspx" title="What are Attributes?">What are Attributes?</a></small></p>
            </div>
            
        </div>
        
        
        <div id="ctl00_ContentBody_uxBanManWidget" class="InlinePageAds">
	
            
            <script type='text/javascript'>
googletag.cmd.push(function() {{
googletag.defineSlot('/1011121/cache_details_pg_120x240', [120, 240], 'div_086f41f5-4a0c-4824-aae1-0bb85a6d9914').addService(googletag.pubads());
googletag.pubads().enableSingleRequest();
googletag.enableServices();
}});
</script>
<div id='div_086f41f5-4a0c-4824-aae1-0bb85a6d9914'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div_086f41f5-4a0c-4824-aae1-0bb85a6d9914'); });
</script>
</div>

            <p>
                <small><a href="../about/advertising.aspx" id="ctl00_ContentBody_advertisingWithUs" title="Advertising with Us">Advertising with Us</a></small> </p>
</div><div class="GoogleAds AlignCenter BottomSpacing">
            
        </div>
        <div class="clear">
        </div>
        
        <span id="ctl00_ContentBody_lnkTravelBugs"></span>
        
        
<div class="CacheDetailNavigationWidget">
    
    <h3 class="WidgetHeader">
        <span id="ctl00_ContentBody_uxTravelBugList_uxInventoryLabel">Inventory</span>
    </h3>
    <div class="WidgetBody">
        
        
            <div id="ctl00_ContentBody_uxTravelBugList_uxNoTrackableItems">
	
                <p class="NoBottomSpacing"><span id="ctl00_ContentBody_uxTravelBugList_uxNoTrackableItemsLabel">There are no Trackables in this cache.</span></p>
            
</div>
            <div class="TopSpacing">
                
                <p class="NoBottomSpacing"><a id="ctl00_ContentBody_uxTravelBugList_uxTrackableItemsHistory" href="../track/search.aspx?wid=73246a5a-ebb9-4d4f-8db9-a951036f5376">View past Trackables</a></p>
                <p class="NoBottomSpacing"><a id="ctl00_ContentBody_uxTravelBugList_uxWhatAreTrackables" title="What are Trackable Items?" href="../track/default.aspx">What are Trackable Items?</a></p>
            </div>

        
    </div>
    
    
</div>

        
<div class="CacheDetailNavigationWidget">
    <h3 class="WidgetHeader">
        Bookmark Lists
    </h3>
    <div class="WidgetBody">
        
                <ul class="BookmarkList">
            
                <li class=''>
                    <a href="http://www.geocaching.com/bookmarks/view.aspx?guid=3eeea057-f605-485a-a45a-f5fea1426612">Kindercaches (KiC)</a><br />by <a href="http://www.geocaching.com/profile/?guid=0564a940-8311-40ee-8e76-7e91b2cf6284">blafoo</a>
                </li>
            
                <li class='AlternatingRow'>
                    <a href="http://www.geocaching.com/bookmarks/view.aspx?guid=15167f05-1058-4b5a-8f80-d9d12469006d">Interessante GC und NC Raum Hannover</a><br />by <a href="http://www.geocaching.com/profile/?guid=89b95797-bede-4ab2-990e-3ae1fd97539f">Tinimaus</a>
                </li>
            
                </ul>
            
        <p class="NoBottomSpacing">
            <a href="/bookmarks/default.aspx?guid=73246a5a-ebb9-4d4f-8db9-a951036f5376&WptTypeID=3" title="View all bookmark lists...">View all bookmark lists...</a>
        </p>
    </div>
</div>


        
        
    </div>
    
    
    <div id="ctl00_ContentBody_bottomSection" class="span-24 last">
        
        <p>
            <span id="ctl00_ContentBody_WaypointsInfo" style="font-weight:bold;">Additional Waypoints</span>&nbsp; <br />
            
            
<script type="text/javascript">
    <!--
    var checkflag = false;
    function checkAll(obj) {
        if (checkflag == false) {
            checkflag = true;
        } else {
            checkflag = false;
        }
        var arrInput = document.getElementsByTagName("input");
        for (i = 0; i < arrInput.length; i++) {
            if (arrInput[i].type == 'checkbox') {
                arrInput[i].checked = checkflag;
            }
        }
    }

    //  End -->
</script>

        <table class="Table" id="ctl00_ContentBody_Waypoints">
            <thead>
                <tr>
                    <th scope="col" class="AlignCenter">
                        <a href="javascript:checkAll(this);">
                            </a>
                    </th>
                    <th scope="col">
                        &nbsp;
                    </th>
                    <th scope="col">
                        &nbsp;
                    </th>
                    <th scope="col">
                        Prefix
                    </th>
                    <th scope="col">
                        Lookup
                    </th>
                    <th scope="col">
                        Name
                    </th>
                    <th scope="col">
                        Coordinate
                    </th>
                    <th scope="col">
                        &nbsp;
                    </th>
                </tr>
            </thead>
            <tbody>
    
        <tr class="BorderBottom " ishidden="false">
            <td class="AlignCenter">
                
            </td>
            <td>
                <img width="16" height="16" src="/images/icons/icon_nocoords.jpg" alt="Hide Coordinates" title="Hide Coordinates" />
            </td>
            <td>
                <img width="16" height="16" src="http://www.geocaching.com/images/wpttypes/sm/flag.jpg" alt="Final Location" title="Final Location" />
            </td>
            <td>
                <span id="awpt_FN">
                    FN</span>
            </td>
            <td>
                FINAL
            </td>
            <td>
                <a href="http://www.geocaching.com/seek/wpt.aspx?WID=30f1b37c-d395-4c7a-94e2-0c649d5f231b&RefID=73246a5a-ebb9-4d4f-8db9-a951036f5376&RefDS=1">GC2CJPF Final</a> (Final Location)
            </td>
            <td>
                ???&nbsp;
                
            </td>
            <td>
                &nbsp;
                &nbsp;
                
                
            </td>
        </tr>
        <tr class="BorderBottom ">
            <td>
                &nbsp;
            </td>
            <td>
            Note:
            </td>
            <td colspan="6">
                
            </td>
        </tr>
    
        <tr class="BorderBottom AlternatingRow" ishidden="false">
            <td class="AlignCenter">
                
            </td>
            <td>
                <img width="16" height="16" src="/images/icons/icon_viewable.jpg" alt="Visible" title="Visible" />
            </td>
            <td>
                <img width="16" height="16" src="http://www.geocaching.com/images/wpttypes/sm/pkg.jpg" alt="Parking Area" title="Parking Area" />
            </td>
            <td>
                <span id="awpt_PK">
                    PK</span>
            </td>
            <td>
                PARKNG
            </td>
            <td>
                <a href="http://www.geocaching.com/seek/wpt.aspx?WID=98cb1387-49ce-4f94-9b05-5cb079d332b1&RefID=73246a5a-ebb9-4d4f-8db9-a951036f5376&RefDS=1">GC2CJPF Parking</a> (Parking Area)
            </td>
            <td>
                N 52° 25.384 E 009° 39.023&nbsp;
                
            </td>
            <td>
                &nbsp;
                &nbsp;
                
                
            </td>
        </tr>
        <tr class="BorderBottom AlternatingRow">
            <td>
                &nbsp;
            </td>
            <td>
            Note:
            </td>
            <td colspan="6">
                Kein "offizieller" Parkplatz, Parken trotzdem möglich.
            </td>
        </tr>
    
        <tr class="BorderBottom " ishidden="false">
            <td class="AlignCenter">
                
            </td>
            <td>
                <img width="16" height="16" src="/images/icons/icon_viewable.jpg" alt="Visible" title="Visible" />
            </td>
            <td>
                <img width="16" height="16" src="http://www.geocaching.com/images/wpttypes/sm/puzzle.jpg" alt="Virtual Stage" title="Virtual Stage" />
            </td>
            <td>
                <span id="awpt_ST">
                    ST</span>
            </td>
            <td>
                START
            </td>
            <td>
                <a href="http://www.geocaching.com/seek/wpt.aspx?WID=04113bad-64ca-499a-9848-b5937e13da1b&RefID=73246a5a-ebb9-4d4f-8db9-a951036f5376&RefDS=1">GC2CJPF Start</a> (Virtual Stage)
            </td>
            <td>
                N 52° 25.504 E 009° 39.852&nbsp;
                
            </td>
            <td>
                &nbsp;
                &nbsp;
                
                
            </td>
        </tr>
        <tr class="BorderBottom ">
            <td>
                &nbsp;
            </td>
            <td>
            Note:
            </td>
            <td colspan="6">
                
            </td>
        </tr>
    
        <tr class="BorderBottom AlternatingRow" ishidden="false">
            <td class="AlignCenter">
                
            </td>
            <td>
                <img width="16" height="16" src="/images/icons/icon_viewable.jpg" alt="Visible" title="Visible" />
            </td>
            <td>
                <img width="16" height="16" src="http://www.geocaching.com/images/wpttypes/sm/waypoint.jpg" alt="Reference Point" title="Reference Point" />
            </td>
            <td>
                <span id="awpt_WO">
                    WO</span>
            </td>
            <td>
                SCENIC
            </td>
            <td>
                <a href="http://www.geocaching.com/seek/wpt.aspx?WID=b28c5879-3181-4510-94fa-6ec5e30fd056&RefID=73246a5a-ebb9-4d4f-8db9-a951036f5376&RefDS=1">Aussichtspunkt</a> (Reference Point)
            </td>
            <td>
                N 52° 25.488 E 009° 39.432&nbsp;
                
            </td>
            <td>
                &nbsp;
                &nbsp;
                
                
            </td>
        </tr>
        <tr class="BorderBottom AlternatingRow">
            <td>
                &nbsp;
            </td>
            <td>
            Note:
            </td>
            <td colspan="6">
                Ehemalige Finallocation wo es gebrannt hat. Gleichzeitig netter Aussichtspunkt.
            </td>
        </tr>
    
        </tbody> </table>
    
<p>
    
    <span id="ShowHideLink">|
    <a id="ctl00_ContentBody_Waypoints_uxShowHiddenCoordinates" href="../controls/#">Show Hidden Waypoints</a>
    <a id="ctl00_ContentBody_Waypoints_uxHideHiddenCoordinates" href="../controls/#">Hide Hidden Waypoints</a></span>
</p>

<script type="text/javascript" language="javascript">
    var hiddenLinkCookieName = "hiddenlinks";

    jQuery(function () {
        var $ = jQuery;
        var hiddenLinkCookie = jQuery.cookie(hiddenLinkCookieName);

        $('#ctl00_ContentBody_Waypoints_uxShowHiddenCoordinates').click(function (e) {
            setHiddenCoordState(true);
            return false;
        });

        $('#ctl00_ContentBody_Waypoints_uxHideHiddenCoordinates').click(function (e) {
            setHiddenCoordState(false);
            return false;
        });

        if ($("#ctl00_ContentBody_Waypoints tbody tr[ishidden='true']").length > 0) {
            $("#ShowHideLink").show();
        } else {
            $("#ShowHideLink").hide();
        }
        
        if (hiddenLinkCookie == null || hiddenLinkCookie == "false") {
            setHiddenCoordState(false);
        } else {
            setHiddenCoordState(true);
        }

    });



    function setHiddenCoordState(show) {
        var $ = jQuery;
        if (show) {
            $('#ctl00_ContentBody_Waypoints tbody')
                    .find("tr.AlternatingRow")
                        .removeClass("AlternatingRow")
                        .end()
                    .find("tr")
                        .show()
                        .end()
                    .find("tr:even:visible")
                        .each(function(i) {
                            if (i % 2 == 1)
                                $(this).addClass("AlternatingRow").next().addClass("AlternatingRow");
                        })
                    .end();

            $("#ctl00_ContentBody_Waypoints_uxShowHiddenCoordinates").hide();
            $("#ctl00_ContentBody_Waypoints_uxHideHiddenCoordinates").show();

            $.cookie(hiddenLinkCookieName, "true");

        } else {
            $('#ctl00_ContentBody_Waypoints tbody')
                    .find("tr.AlternatingRow")
                        .removeClass("AlternatingRow")
                        .end()
                    .find("tr[ishidden='true']").each(function() {
                        $(this).hide().next().hide();
                    })
                        .end()
                    .find("tr:even:visible")
                        .each(function(i) {
                            if (i % 2 == 1)
                                $(this).addClass("AlternatingRow").next().addClass("AlternatingRow");
                        })
                    .end();

            $("#ctl00_ContentBody_Waypoints_uxShowHiddenCoordinates").show();
            $("#ctl00_ContentBody_Waypoints_uxHideHiddenCoordinates").hide();

            $.cookie(hiddenLinkCookieName, "false");
        }

        return false;
    }
</script>

        <p>
        <div id="uxlrgMap" class="FloatRight TopSpacing">
	
            <div class="PageBreakBefore">
                
            </div>
            <div class="CDMapWidget">
                <p class="WidgetHeader NoBottomSpacing">
                    <a id="ctl00_ContentBody_uxViewLargerMap" title="View Larger Map" href="/map/default.aspx?lat=52.425067&amp;lng=9.6642" target="_blank">View Larger Map</a>
                </p>
                
                <div id="map_canvas" style="width: 325px; height: 325px;">
                </div>
                <p class="WidgetFooter">
                    <a id="ctl00_ContentBody_uxNotesAboutPrinting" href="#mapPrintingNotes" class="NoPrint">Notes about Printing Maps</a>
                </p>
            </div>
            <div style="display: none;">
                <div id="mapPrintingNotes">
                    To print the map in Firefox and Opera, enable background images in the print dialog.
                    <a href="#dlgMapPrintWarning" class="dialog" onclick="$.fancybox.close()">
                        Close
                    </a>
                </div>
            </div>
        
</div>
        
        <p class="NoPrint">
            <span id="ctl00_ContentBody_uxFindLinksHeader" style="font-weight:bold;">Find...</span>
            <br />
            <span id="ctl00_ContentBody_FindText"></span>
        </p>
        <ul class="NoPrint">
            <li>
                ...other caches <a href="/seek/nearest.aspx?u=Tom03">hidden</a> or <a href="/seek/nearest.aspx?ul=Tom03">found</a> by this user
            </li>
            
                <li>
                    ...nearby <a href="/seek/nearest.aspx?tx=a5f6d0ad-d2f2-4011-8c14-940a9ebf3c74&lat=52.425067&lng=9.664200">caches of this type</a>, <a href="/seek/nearest.aspx?tx=a5f6d0ad-d2f2-4011-8c14-940a9ebf3c74&lat=52.425067&lng=9.664200&f=1">that I haven't found</a>
                </li>
                <li>
                    ...all nearby <a href="/seek/nearest.aspx?lat=52.425067&lng=9.664200">caches</a>, <a href="/seek/nearest.aspx?lat=52.425067&lng=9.664200&f=1">that I haven't found</a>
                </li>
                <li>
                    ...all nearby <a href="http://www.waymarking.com/directory.aspx?f=1&lat=52.425067&lon=9.664200">waymarks on Waymarking.com</a>
                </li>
            
            
        </ul>
        <p class="NoPrint">
            <span id="ctl00_ContentBody_uxMapLinkHeader" style="font-weight:bold;">For online maps...</span>
        </p>
        <span class="NoPrint">
            
<ul>
    <span id="ctl00_ContentBody_MapLinks_MapLinks"><li><a href="http://www.geocaching.com/map/default.aspx?lat=52.42507&lng=9.6642" target="_blank">Geocaching.com Map</a></li><li><a href="http://maps.google.com/maps?q=N+52%c2%b0+25.504+E+009%c2%b0+39.852+(GC2CJPF)+" target="_blank">Google Maps</a></li><li><a href="http://www.mapquest.com/maps/map.adp?searchtype=address&formtype=latlong&latlongtype=decimal&latitude=52.42507&longitude=9.6642&zoom=10" target="_blank">MapQuest</a></li><li><a href="http://maps.yahoo.com/#lat=52.42507&lon=9.6642&zoom=16&q=52.42507,9.6642&conf=1&start=1&mvt=m&trf=0" target="_blank">Yahoo Maps</a></li><li><a href="http://www.bing.com/maps/default.aspx?v=2&lvl=14&sp=point.52.42507_9.6642_GC2CJPF" target="_blank">Bing Maps</a></li><li><a href="http://www.opencyclemap.org/?zoom=12&lat=52.42507&lon=9.6642" target="_blank">OpenCycleMap</a></li><li><a href="http://www.openstreetmap.org/?mlat=52.42507&mlon=9.6642&zoom=12" target="_blank">OpenStreetMap</a></li></span>
</ul>

        </span>
        <ul class="CachePageImages NoPrint">
            
        </ul>
        
            <div class="InformationWidget Clear">
                <h3>
                    218 Logged Visits
                </h3>
                <div class="EncryptDecrypt">
                    <a href="#" class="decrypt-link">
                        Decrypt
                    </a>
                </div>
                <span id="ctl00_ContentBody_lblFindCounts"><p class="LogTotals"><img src="/images/logtypes/2.png" alt="Found it" title="Found it" /> 195&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="/images/logtypes/3.png" alt="Didn't find it" title="Didn't find it" /> 4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="/images/logtypes/4.png" alt="Write note" title="Write note" /> 8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="/images/logtypes/22.png" alt="Temporarily Disable Listing" title="Temporarily Disable Listing" /> 2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="/images/logtypes/23.png" alt="Enable Listing" title="Enable Listing" /> 2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="/images/logtypes/24.png" alt="Publish Listing" title="Publish Listing" /> 1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="/images/logtypes/45.png" alt="Needs Maintenance" title="Needs Maintenance" /> 3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="/images/logtypes/46.png" alt="Owner Maintenance" title="Owner Maintenance" /> 3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p></span>
                <p class="HalfLeft">
                    <a id="ctl00_ContentBody_uxLogbookLink" href="../seek/cache_logbook.aspx?guid=73246a5a-ebb9-4d4f-8db9-a951036f5376">View Logbook</a> | <a id="ctl00_ContentBody_uxGalleryImagesLink" DisplayFormatPlural="View the Image Gallery of {0:#,###} images" DisplayFormatSingular="View the Image Gallery" href="../seek/gallery.aspx?guid=73246a5a-ebb9-4d4f-8db9-a951036f5376">View the Image Gallery of 21 images</a>
                </p>
                <p class="NoBottomSpacing AlignRight">
                    <span class="Warning">**Warning!</span> <a href="/about/glossary.aspx#spoiler" title="Spoilers">Spoilers</a> may be included in the descriptions or links.
                </p>
            </div>
            
            <div id="cache_logs_container">
                <table id="cache_logs_table" class="LogsTable NoBottomSpacing">
                    <tbody>
                    </tbody>
                    <tfoot>
                        <tr>
                            <td class="AlignCenter">
                                <div id="pnlLazyLoad" style="display: none;">
                                    <img src="/images/loading2.gif" class="StatusIcon" alt="Loading" />
                                    Loading Cache Logs...
                                </div>
                                <div id="pnlButtonLoad" style="display: none;">
                                    <a class="MobileButton">
                                        Load More Logs...</a>
                                </div>
                            </td>
                        </tr>
                    </tfoot>
                </table>
            </div>
            <p>
                <small>
                    Current Time: <time datetime="2015-03-27T15:36:41Z">03/27/2015 15:36:41 Pacific Daylight Time (22:36 GMT)</time><br/>Last Updated: <time class="timeago" datetime="2015-02-08T18:40:31Z">2015-02-08T18:40:31Z</time> on 02/08/2015 10:40:31 (UTC-08:00) Pacific Time (US & Canada) (18:40 GMT) <br/>Rendered From:Unknown<br />Coordinates are in the WGS84 datum
                </small>
            </p>
            <div id="topScroll" class="TopScroll" style="display: none;">
                <a href="#Top">&nbsp;</a> </div></div><script id="tmpl_CacheLogRow" type="text/x-jquery-tmpl">
        <tr class="log-row" data-encoded="${IsEncoded}">
            <td>
                <div class="FloatLeft LogDisplayLeft">
                    <p class="logOwnerProfileName">
                        <strong><a id="143568283" href="/profile/?guid=${AccountGuid}">${UserName}</a></strong>
                    </p>
                    <p class="logOwnerBadge">
                        <img title="${creator.GroupTitle}" src="${creator.GroupImageUrl}">${creator.GroupTitle}
                    </p>
                    <p class="logOwnerAvatar">
                        <a href="/profile/?guid=${AccountGuid}">{{if includeAvatars && AvatarImage}}
                                <img width="48" height="48" src="http://img.geocaching.com/user/avatar/${AvatarImage}">
                            {{else includeAvatars }}
                                <img width="48" height="48" src="/images/default_avatar.jpg">
                            {{/if}}
                        </a>
                    </p>
                    <p class="logOwnerStats">
                        {{if GeocacheFindCount > 0 }}
                            <img title="Caches Found" src="/images/icons/16/found.png">${GeocacheFindCount}
                        {{/if}}
                    </p>
                </div>
                <div class="FloatLeft LogDisplayRight">
                    <div class="HalfLeft LogType">
                        <strong>
                            <img title="${LogType}" alt="${LogType}" src="/images/logtypes/${LogTypeImage}">&nbsp;${LogType}</strong>
                    </div>
                    <div class="HalfRight AlignRight">
                        <span class="minorDetails LogDate">${Visited}</span>
                    </div>
                    <div class="Clear LogContent">
                        {{if LatLonString.length > 0}}
                            <strong>${LatLonString}</strong>
                        {{/if}}
                            <p class="LogText">{{html LogText}}</p>
                        {{if Images.length > 0}}
                                <table cellspacing="0" cellpadding="3" class="LogImagesTable">
                                    {{tmpl(Images) "tmplCacheLogImages"}}
                                </table>
                        {{/if}}
                            
                        <div class="AlignRight">
                            <small><a title="View Log" href="/seek/log.aspx?LUID=${LogGuid}" target="_blank">{{if (userInfo.ID==AccountID)}}
                                       View / Edit Log / Images
                                    {{else}}
                                       View Log
                                    {{/if}}
                            </a></small>&nbsp;
                                {{if (userInfo.ID==AccountID)}}
                                <small><a title="Upload Image" href="/seek/upload.aspx?LID=${LogID}" target="_blank">Upload Image</a></small>
                            {{/if}}
                        </div>
                    </div>
                </div>
            </td>
        </tr>
    </script><script id="tmpl_CacheLogImages" type="text/x-jquery-tmpl">
            <tr>
                <td>
                    
                    <a class="tb_images lnk" rel="tb_images[grp${LogID}]" href="http://img.geocaching.com/cache/log/large/${FileName}" data-title="{{tmpl "tmplCacheLogImagesTitle"}}">
                        <img title="Photo" alt="Photo" src="/images/icons/16/photo.png"> 
                        <span>${ $('<div />').text($('<div />').html($item.data.Name).text()).html() }</span>
                    </a>
                </td>
            </tr>
    </script><script id="tmpl_CacheLogImagesTitle" type="text/x-jquery-tmpl">
            &lt;span class=&quot;LogImgTitle&quot;&gt; ${ $('<div />
            ').text($('<div />
            ').text($('<div />
            ').html($item.data.Name).text()).html()).html() } &nbsp;&lt;/span&gt;&lt;span class=&quot;LogImgLink&quot;&gt;

                &lt;a target=&quot;_blank&quot; href=&quot;/seek/log.aspx?LUID=${$item.parent.parent.data.LogGuid}&IID=${ImageGuid}&quot;>View Log&lt;/a&gt;&nbsp;
        
                &lt;a href=&quot;http://img.geocaching.com/cache/log/large/${FileName}&quot;>Print Picture&lt;/a&gt;&lt;/span&gt;

                {{if (Descr && Descr.length > 0) }}
                   &lt;br /&gt;&lt;p class=&quot;LogImgDescription&quot;&gt;${ $('<div />
            ').text($('<div />
            ').text($('<div />
            ').html($item.data.Descr).text()).html()).html() }&lt;/p&gt;
                {{/if}}
    </script><script id="tmpl_CacheCoordinateUpdate" type="text/x-jquery-tmpl">
        <div class="ccu-update" data-lat="${ll[0]}" data-lng="${ll[1]}">
            <h4 class="BottomSpacing">Corrected Coordinates (hidden from others)</h4>
            <dl>
                <dt>Original:</dt>
                <dd>${ll_formatted} <a href="#" class="ccu-restore">Restore</a></dd>
            </dl>
            <dl class="ccu-parse">
                <dt>Change To:</dt>
                <dd>
                    <input type="text" max="40" size="35" class="cc-parse-text">
                    <button class="ccu-button ccu-parse">Submit</button>
                </dd>
            </dl>
            <dl class="ccu-parseverify" style="display: none;">
                <dt>Change To:</dt>
                <dd>
                    <span class="ccu-parseverify-coords">N 32°38.880′, W 097°23.755′</span>
                </dd>
                <dt>&nbsp;</dt>
                <dd>
                    <button class="ccu-button ccu-parseverify-accept">Accept</button>&nbsp;
                    <button class="ccu-button ccu-parseverify-cancel">Cancel</button>
                </dd>
            </dl>
        </div>
    </script>

                </div>
                
            </div>
        </section>
        <footer>

            <section  class="links wrap">
                <dl>
                    <dt>Partner With Us</dt>
                    <dd><a id="ctl00_hlFooterJobs" href="http://www.groundspeak.com/jobs.aspx">Jobs</a></dd>
                    <dd><a id="ctl00_lnkTravelAndGeotourism" href="/travel/">GeoTours & Travel</a></dd>
                    <dd><a id="ctl00_lnkBrandedPromotions" href="/brandedpromotions/">Branded Promotions</a></dd>
                </dl>

                <dl>
                    <dt>Legal</dt>
                    <dd><a id="ctl00_hlFooterLogo" accesskey="l" href="../about/logousage.aspx">Logo Usage Guidelines</a></dd>
                    <dd><a id="ctl00_hlFooterParksPoliceLink" href="../parksandpolice/">Parks & Police</a></dd>
                </dl>

                <dl>
                    <dt>Shop Geocaching</dt>
                    <dd><a id="ctl00_lnkUSAShop" href="http://shop.geocaching.com/">USA Shop</a></dd>
                    <dd><a id="ctl00_lnkInternationalShop" href="http://shop.geocaching.com/default/international-retailers/">International Retailers</a></dd>
                </dl>
                <dl>
                    <dt>Contact Us</dt>
                    <dd><a id="ctl00_lnkHelpCenterLink" rel="external" href="http://support.groundspeak.com/index.php?pg=request">Help Center</a></dd>
                    <dd><a id="ctl00_lnkMedia" rel="document" href="../press/faq.aspx">Media Inquiries</a></dd>
                </dl>
                

<div class="language-dropdown">
    <div class="LocaleText">
        Choose Language
    </div>
    <div class="LocaleList">
        
        <div class="selected-language">
            
            <a href="#">English</a>
            
        </div>
        <ul class="language-list">
            
                    <li><a id="ctl00_uxLocaleList_uxLocaleList_ctl00_uxLocaleItem" class="selected" href="javascript:__doPostBack(&#39;ctl00$uxLocaleList$uxLocaleList$ctl00$uxLocaleItem&#39;,&#39;&#39;)">English</a></li>
                
                    <li><a id="ctl00_uxLocaleList_uxLocaleList_ctl01_uxLocaleItem" href="javascript:__doPostBack(&#39;ctl00$uxLocaleList$uxLocaleList$ctl01$uxLocaleItem&#39;,&#39;&#39;)">Català</a></li>
                
                    <li><a id="ctl00_uxLocaleList_uxLocaleList_ctl02_uxLocaleItem" href="javascript:__doPostBack(&#39;ctl00$uxLocaleList$uxLocaleList$ctl02$uxLocaleItem&#39;,&#39;&#39;)">Čeština</a></li>
                
                    <li><a id="ctl00_uxLocaleList_uxLocaleList_ctl03_uxLocaleItem" href="javascript:__doPostBack(&#39;ctl00$uxLocaleList$uxLocaleList$ctl03$uxLocaleItem&#39;,&#39;&#39;)">Dansk</a></li>
                
                    <li><a id="ctl00_uxLocaleList_uxLocaleList_ctl04_uxLocaleItem" href="javascript:__doPostBack(&#39;ctl00$uxLocaleList$uxLocaleList$ctl04$uxLocaleItem&#39;,&#39;&#39;)">Deutsch</a></li>
                
                    <li><a id="ctl00_uxLocaleList_uxLocaleList_ctl05_uxLocaleItem" href="javascript:__doPostBack(&#39;ctl00$uxLocaleList$uxLocaleList$ctl05$uxLocaleItem&#39;,&#39;&#39;)">Ελληνικά</a></li>
                
                    <li><a id="ctl00_uxLocaleList_uxLocaleList_ctl06_uxLocaleItem" href="javascript:__doPostBack(&#39;ctl00$uxLocaleList$uxLocaleList$ctl06$uxLocaleItem&#39;,&#39;&#39;)">Eesti</a></li>
                
                    <li><a id="ctl00_uxLocaleList_uxLocaleList_ctl07_uxLocaleItem" href="javascript:__doPostBack(&#39;ctl00$uxLocaleList$uxLocaleList$ctl07$uxLocaleItem&#39;,&#39;&#39;)">Español</a></li>
                
                    <li><a id="ctl00_uxLocaleList_uxLocaleList_ctl08_uxLocaleItem" href="javascript:__doPostBack(&#39;ctl00$uxLocaleList$uxLocaleList$ctl08$uxLocaleItem&#39;,&#39;&#39;)">Français</a></li>
                
                    <li><a id="ctl00_uxLocaleList_uxLocaleList_ctl09_uxLocaleItem" href="javascript:__doPostBack(&#39;ctl00$uxLocaleList$uxLocaleList$ctl09$uxLocaleItem&#39;,&#39;&#39;)">Italiano</a></li>
                
                    <li><a id="ctl00_uxLocaleList_uxLocaleList_ctl10_uxLocaleItem" href="javascript:__doPostBack(&#39;ctl00$uxLocaleList$uxLocaleList$ctl10$uxLocaleItem&#39;,&#39;&#39;)">日本語</a></li>
                
                    <li><a id="ctl00_uxLocaleList_uxLocaleList_ctl11_uxLocaleItem" href="javascript:__doPostBack(&#39;ctl00$uxLocaleList$uxLocaleList$ctl11$uxLocaleItem&#39;,&#39;&#39;)">한국어</a></li>
                
                    <li><a id="ctl00_uxLocaleList_uxLocaleList_ctl12_uxLocaleItem" href="javascript:__doPostBack(&#39;ctl00$uxLocaleList$uxLocaleList$ctl12$uxLocaleItem&#39;,&#39;&#39;)">Latviešu</a></li>
                
                    <li><a id="ctl00_uxLocaleList_uxLocaleList_ctl13_uxLocaleItem" href="javascript:__doPostBack(&#39;ctl00$uxLocaleList$uxLocaleList$ctl13$uxLocaleItem&#39;,&#39;&#39;)">Magyar</a></li>
                
                    <li><a id="ctl00_uxLocaleList_uxLocaleList_ctl14_uxLocaleItem" href="javascript:__doPostBack(&#39;ctl00$uxLocaleList$uxLocaleList$ctl14$uxLocaleItem&#39;,&#39;&#39;)">Nederlands</a></li>
                
                    <li><a id="ctl00_uxLocaleList_uxLocaleList_ctl15_uxLocaleItem" href="javascript:__doPostBack(&#39;ctl00$uxLocaleList$uxLocaleList$ctl15$uxLocaleItem&#39;,&#39;&#39;)">Norsk, Bokmål</a></li>
                
                    <li><a id="ctl00_uxLocaleList_uxLocaleList_ctl16_uxLocaleItem" href="javascript:__doPostBack(&#39;ctl00$uxLocaleList$uxLocaleList$ctl16$uxLocaleItem&#39;,&#39;&#39;)">Polski</a></li>
                
                    <li><a id="ctl00_uxLocaleList_uxLocaleList_ctl17_uxLocaleItem" href="javascript:__doPostBack(&#39;ctl00$uxLocaleList$uxLocaleList$ctl17$uxLocaleItem&#39;,&#39;&#39;)">Português</a></li>
                
                    <li><a id="ctl00_uxLocaleList_uxLocaleList_ctl18_uxLocaleItem" href="javascript:__doPostBack(&#39;ctl00$uxLocaleList$uxLocaleList$ctl18$uxLocaleItem&#39;,&#39;&#39;)">Română</a></li>
                
                    <li><a id="ctl00_uxLocaleList_uxLocaleList_ctl19_uxLocaleItem" href="javascript:__doPostBack(&#39;ctl00$uxLocaleList$uxLocaleList$ctl19$uxLocaleItem&#39;,&#39;&#39;)">Русский</a></li>
                
                    <li><a id="ctl00_uxLocaleList_uxLocaleList_ctl20_uxLocaleItem" href="javascript:__doPostBack(&#39;ctl00$uxLocaleList$uxLocaleList$ctl20$uxLocaleItem&#39;,&#39;&#39;)">Suomi</a></li>
                
                    <li><a id="ctl00_uxLocaleList_uxLocaleList_ctl21_uxLocaleItem" href="javascript:__doPostBack(&#39;ctl00$uxLocaleList$uxLocaleList$ctl21$uxLocaleItem&#39;,&#39;&#39;)">Svenska</a></li>
                
        </ul>
        
    </div>
</div>
<script type="text/javascript">

    jQuery(document).ready(function () {
        jQuery(".selected-language a").click(function (e) {
            e.preventDefault();
            var $loc = jQuery(this).parent().next();
            jQuery($loc).show().position({
                of: $loc.parent(),
                my: "left bottom",
                at: "left top-10",
                collision: "fit fit"
            });
            jQuery(this).addClass("Expanded");
            jQuery(document).click(function () {
                jQuery(".language-list").fadeOut("fast");
                jQuery(".selected-language a").removeClass("Expanded");
            });
            return false;
        });
    });
</script>
            </section>

            <section class="copyright">
                <div class="container">
                    <p>
                        &copy; 2000-2015
                        <a href="http://www.groundspeak.com/" title="Groundspeak, Inc." accesskey="g">Groundspeak, Inc.</a>
                        All Rights Reserved.
                        <a id="ctl00_hlFooterTerms" accesskey="u" title="Groundspeak Terms of Use" href="../about/termsofuse.aspx">Groundspeak Terms of Use</a>
                        |
                <a id="ctl00_hlFooterPrivacy" accesskey="x" href="../about/privacypolicy.aspx">Privacy Policy</a>
                    </p>

                    <ul class="links-social">
                        <li>
                            <a id="ctl00_hlFacebook" title="Facebook" href="http://www.facebook.com/geocaching"></a>
                        </li>
                        <li>
                            <a id="ctl00_hlYouTube" title="YouTube" href="http://www.youtube.com/user/GoGeocaching"></a>
                        </li>
                        <li>
                            <a id="ctl00_hlInstagram" title="Instagram" href="http://instagram.com/geocaching/"></a>
                        </li>
                        <li>
                            <a id="ctl00_hlTwitter" title="Twitter" href="http://twitter.com/GoGeocaching"></a>                         
                        </li>
                    </ul>
                </div>
            </section>
        </footer>
        <div class="SkipLinks">
            <a id="ctl00_hlSkipLinksTop" accesskey="t" title="Return to the Top of the Page" href="#Top">Return to the Top of the Page</a>
        </div>
    

<script type="text/javascript">
//<![CDATA[
$(function() { _gaq.push(['_trackEvent', 'Geocaching', 'CacheDetailsMemberType', 'Premium', null, true]); });var isLoggedIn = true;
var userDefinedCoords = {"status":"success","data":{"isUserDefined":false,"oldLatLngDisplay":"N 52° 25.504' E 009° 39.852'"}};
cmapAdditionalWaypoints = [{"lat":52.42307,"lng":9.65038,"type":217,"name":"GC2CJPF Parking ( Parking Area )","pf":"PK"},{"lat":52.42507,"lng":9.6642,"type":218,"name":"GC2CJPF Start ( Virtual Stage )","pf":"ST"},{"lat":52.4248,"lng":9.6572,"type":452,"name":"Aussichtspunkt ( Reference Point )","pf":"WO"}];
mapLatLng = {"lat":52.42507,"lng":9.6642,"type":3,"name":"Kinderwald KiC"};
var ccConversions = [{"t":"Decimal","k":"DD","d":"WGS84","v":"52.425067, 009.664200"},{"t":"DDD MM SS.SSS","k":"DMS","d":"WGS84","v":"N 52° 25' 30.241\" E 009° 39' 51.120\""},{"t":"UTM","k":"UTM","d":"WGS84","v":"32U E 545164 N 5808524"}];
var dh=false;userInfo = {ID: 1750448};
userToken = 'FOUTFKOKLELXO6UEFIAQZWR6FG2ZEQLSILWLDKPU4PRKPGSNLVAYIULRZV7RY27NYSYJJU6WI55VHQ7OA7ZOBMGMTFCGG42V3FUGQ2ATVDRP4DYMYXFSDFCFQINMCZBY4R27AYWFJMWLY3HEYT5JSQHY4CTERPRB7NW6WKANMSAKLH3M3ERHUJOKJCJSREA4JKX7HH3DTRSS7ZJHBFHO67DMIDDOUJE5VIUUUCQDDZR6JXEHDZTQ';
includeAvatars = false;
var lat=52.425067, lng=9.6642, guid='73246a5a-ebb9-4d4f-8db9-a951036f5376';
initalLogs = {"status":"success", "data": [{"LogID":476003048,"CacheID":1811409,"LogGuid":"6daf80b4-3219-4862-b527-4967f57defad","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Needs Maintenance","LogTypeImage":"45.png","LogText":"Bitte die Berechnung für A ändern","Created":"2015-02-08","Visited":"2015-02-08","UserName":"Nicolix","MembershipLevel":3,"AccountID":2896084,"AccountGuid":"50edc314-d601-480e-8c6a-c096c11db598","Email":"","AvatarImage":"e1537018-d686-42e9-bac9-e911f46593f8.png","GeocacheFindCount":2220,"GeocacheHideCount":2,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":476000835,"CacheID":1811409,"LogGuid":"969371df-2eab-4275-8243-9b7b8bdeeed7","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Diesen Multi gingen nessi09 und ich heute auf unserer Cachingtour gemeinsam an. Am Start angekommen mussten wir zwei Sachen feststellen: Keine Räder und keine Punkte! Die Räder waren schnell angeschlossen, doch die Echse scheint erst kürzlich gestrichen worden zu sein, wobei sie wohl ihre außergewöhnliche Schuppenfarbe verloren hat. Schade. Die nächsten Stationen konnten wir gut finden und die Aufgaben gut lösen, doch dann der nächste \"Schock\", keine Seilfähre. Doch da wir A ganz gut raten konnten, war die Berechnung dann kein Problem mehr und wir konnten uns bald darauf ins Logbuch eintragen. Vielen Dank für diesen netten Multi, der mir viel Spaß gemacht hat!","Created":"2015-02-08","Visited":"2015-02-08","UserName":"Nicolix","MembershipLevel":3,"AccountID":2896084,"AccountGuid":"50edc314-d601-480e-8c6a-c096c11db598","Email":"","AvatarImage":"e1537018-d686-42e9-bac9-e911f46593f8.png","GeocacheFindCount":2220,"GeocacheHideCount":2,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[{"ImageID":26244411,"ImageGuid":"f12407de-4158-475e-be28-d244f260ba9e","Name":"Keine Räder","Descr":"","FileName":"f12407de-4158-475e-be28-d244f260ba9e.jpg","Created":"2015-02-08","LogID":476000835,"CacheID":1811409,"ImageUrl":null},{"ImageID":26244438,"ImageGuid":"a2fcad6b-6a83-44fd-8f51-da439fd269c4","Name":"Keine Punkte","Descr":"","FileName":"a2fcad6b-6a83-44fd-8f51-da439fd269c4.jpg","Created":"2015-02-08","LogID":476000835,"CacheID":1811409,"ImageUrl":null},{"ImageID":26244456,"ImageGuid":"2ccb05da-7cc3-44d4-9ca1-2053ba6dcbd7","Name":"Keine Seilfähre","Descr":"","FileName":"2ccb05da-7cc3-44d4-9ca1-2053ba6dcbd7.jpg","Created":"2015-02-08","LogID":476000835,"CacheID":1811409,"ImageUrl":null}]},{"LogID":462798806,"CacheID":1811409,"LogGuid":"32f21349-6fda-407a-8560-bc8ee873ecfc","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Wow, toller Cache! Vielen Dank für den schönen Familiennachmittag!","Created":"2014-11-23","Visited":"2014-11-23","UserName":"NiedersachsenFee","MembershipLevel":1,"AccountID":7350639,"AccountGuid":"480d7529-30bd-4171-97cc-dca3985733ae","Email":"","AvatarImage":"","GeocacheFindCount":66,"GeocacheHideCount":0,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Member","GroupImageUrl":"/images/icons/reg_user.gif"},"Images":[]},{"LogID":452401275,"CacheID":1811409,"LogGuid":"aede63cb-3552-4cac-a087-6cafaf8c006f","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Das war mal einer für die Co. Es heißt ja, von Nachwuchs-Cachern für Nachwuchs-Cacher.<br /><br />Dfdc","Created":"2014-10-11","Visited":"2014-10-11","UserName":"Eilie und Co","MembershipLevel":3,"AccountID":1182877,"AccountGuid":"db0bc9a1-bdd7-4f4b-8b85-ab9a4db26c86","Email":"","AvatarImage":"a74daf4e-1fd0-460a-8000-4fdeda06278d.jpg","GeocacheFindCount":381,"GeocacheHideCount":3,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":451787207,"CacheID":1811409,"LogGuid":"ff6e5a3d-bb0a-43c9-a2ad-3db760618a8f","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Hier konnte ich nicht alle variablen ermitteln. Durch die Quersumme und gleichsetzen konnte ich dann aber die beiden fehlenden variablen ermitteln und dann die eher für kleine Leute geeignete Finaldose finden. <br />TFTC","Created":"2014-10-08","Visited":"2014-10-08","UserName":"Sheglo","MembershipLevel":3,"AccountID":8993236,"AccountGuid":"5edd9a04-2450-4ac1-93be-3f7d387d8920","Email":"","AvatarImage":"","GeocacheFindCount":851,"GeocacheHideCount":3,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":448109769,"CacheID":1811409,"LogGuid":"b22e3cdc-af61-4e1a-a7a4-5f811c14932b","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Trotz drohender Wolken habe ich mich heute Nachmittag auf in den Mecklenheider Forst gemacht. Alles habe ich zwar nicht entdecken können, aber mit etwas Kombinieren erhielt ich plausible KOs, die auch stimmten. Und so konnte ich mich dann ganz ungestört im Logbuch verewigen. Vielen Dank für die schöne Runde und<br /><br />--- T4TC ---","Created":"2014-09-25","Visited":"2014-09-25","UserName":"DeLaTrick","MembershipLevel":3,"AccountID":3696982,"AccountGuid":"44cfcd2c-d3f9-49b8-828a-9f692939f7ab","Email":"","AvatarImage":"9aeb67b2-40e5-4532-8443-312222cd0e4f.jpg","GeocacheFindCount":7068,"GeocacheHideCount":1,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":443692327,"CacheID":1811409,"LogGuid":"bcba0a3e-d021-42a5-bfc3-ca0b2fa402c2","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"heute mit einer gruppe Kindern gefunden. Passt beim Schiff auf schaukelnde Kinder können leicht nass werden. sonst Super cach aufjeden fall für die kinder.","Created":"2014-09-08","Visited":"2014-09-08","UserName":"_locke92_","MembershipLevel":1,"AccountID":4940486,"AccountGuid":"7d379893-a44b-4c8b-ac71-b1c2179bc664","Email":"","AvatarImage":"","GeocacheFindCount":30,"GeocacheHideCount":1,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Member","GroupImageUrl":"/images/icons/reg_user.gif"},"Images":[]},{"LogID":445922654,"CacheID":1811409,"LogGuid":"7bb33d63-fa68-4c13-bb34-3ae62a9c6819","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Danke für den Cache!","Created":"2014-09-16","Visited":"2014-08-17","UserName":"moonbyte","MembershipLevel":1,"AccountID":7826922,"AccountGuid":"17cec138-e064-42dc-b66d-4c4a6d17ec4a","Email":"","AvatarImage":"3b23fe74-aa6c-4edb-a154-3d7d4335bd5e.jpg","GeocacheFindCount":223,"GeocacheHideCount":0,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Member","GroupImageUrl":"/images/icons/reg_user.gif"},"Images":[]},{"LogID":436986872,"CacheID":1811409,"LogGuid":"1ec99a48-4b25-4080-922c-346a55381079","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Danke für den schönen Multi, er hat sehr viel Spaß gemacht.","Created":"2014-08-19","Visited":"2014-08-17","UserName":"Cocoskatze","MembershipLevel":3,"AccountID":6844532,"AccountGuid":"5387dfd1-7fec-48d5-be99-2f4f17483972","Email":"","AvatarImage":"4ed8751b-62ba-440b-b763-35ff4239c755.jpg","GeocacheFindCount":227,"GeocacheHideCount":1,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":434503977,"CacheID":1811409,"LogGuid":"f9641358-4741-42aa-8ece-628da69674ac","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Eine wirklich schöne Gegend für die Kinder, sie wollten gar nicht mehr weg. Leider sind die Aufgaben teils schwer zulösen, da sie der Zerstörungswut anheimgefallen sind, aber dank der Quersumme haben wir das Rätsel lösen können.<br /><br />Lieben Dank für den Cache","Created":"2014-08-13","Visited":"2014-08-13","UserName":"HappyFamily*","MembershipLevel":3,"AccountID":5829133,"AccountGuid":"40b4616d-d3b8-453b-b218-ebced58c0ce7","Email":"","AvatarImage":"","GeocacheFindCount":21,"GeocacheHideCount":0,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":412877556,"CacheID":1811409,"LogGuid":"a8a87d80-3da6-42d2-bec2-7a5243f7d8a6","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"mit der bratenbande gefunden<br />dfdc<br />schulz und schulze","Created":"2014-06-02","Visited":"2014-06-01","UserName":"schulz und schulze","MembershipLevel":1,"AccountID":1417620,"AccountGuid":"be15a8e5-33ea-4151-a9f6-775f49ef5328","Email":"","AvatarImage":"1ba3d006-6943-4d82-802e-7c46691af36b.jpg","GeocacheFindCount":1470,"GeocacheHideCount":3,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Member","GroupImageUrl":"/images/icons/reg_user.gif"},"Images":[]},{"LogID":412634896,"CacheID":1811409,"LogGuid":"8af367ac-e34a-4486-bba2-fdf03b294624","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"mit schulz und schulze dem kinderwald mal wieder einen besuch abgestattet und die dose gefunden<br />dfdc<br />bratenbande","Created":"2014-06-01","Visited":"2014-06-01","UserName":"bratenbande","MembershipLevel":3,"AccountID":1070679,"AccountGuid":"b32cea93-c547-494a-9d9a-520ba01909d3","Email":"","AvatarImage":"57709ef5-8af2-4f7e-8e61-6082be637c7f.jpg","GeocacheFindCount":4300,"GeocacheHideCount":16,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":411253228,"CacheID":1811409,"LogGuid":"41fab16f-bbfb-4849-844b-bc2611a72a99","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Eine tolle Runde am Vater Tag. Danke für den tollen cache! Aerdna71 und Ajnif 88","Created":"2014-05-29","Visited":"2014-05-29","UserName":"aerdna71","MembershipLevel":3,"AccountID":7862919,"AccountGuid":"65583307-a685-4432-bc48-b6a70658d709","Email":"","AvatarImage":"","GeocacheFindCount":1052,"GeocacheHideCount":0,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":416157417,"CacheID":1811409,"LogGuid":"fadfdb5f-3c71-48d8-9831-b6c1b5c98af3","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Nach einem unfreiwilligen Tauchgang mit Padddi bei diesem tollen Wetter war dieser \"ErlebnisCache\" gut zu finden und hat auch noch unheimlich Spaß gemacht.","Created":"2014-06-14","Visited":"2014-05-25","UserName":"LovelessKitten","MembershipLevel":1,"AccountID":7457179,"AccountGuid":"ed7d4899-51f3-4b95-ab00-6dbd0906777a","Email":"","AvatarImage":"1a47f12c-0974-4a9f-88ca-2eca23e1e9a3.gif","GeocacheFindCount":175,"GeocacheHideCount":0,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Member","GroupImageUrl":"/images/icons/reg_user.gif"},"Images":[]},{"LogID":410010095,"CacheID":1811409,"LogGuid":"7879928e-c25a-464a-99b6-124e53a35eef","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"DIeser Cache hat wirklich sehr viel Spaß gemacht und war in schöner Umgebung. Als wir denn die Seilfähre testen wollten, haben ich und LovelessKitten nasse Füße bekommen. Aber es war ja so warm das das sogar relativ angenehm war. Vielen Dank","Created":"2014-05-25","Visited":"2014-05-25","UserName":"Padddi","MembershipLevel":1,"AccountID":7437121,"AccountGuid":"f6147e5c-416c-4bb2-a3b8-f2575e78c4ad","Email":"","AvatarImage":"dc7adc55-12b4-473a-8dae-9971abe258c9.jpg","GeocacheFindCount":187,"GeocacheHideCount":0,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Member","GroupImageUrl":"/images/icons/reg_user.gif"},"Images":[]},{"LogID":403600129,"CacheID":1811409,"LogGuid":"97cd5319-b968-4343-9ec5-03394db94921","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Wir haben ihn.....Hat sehr viel Spaß gemacht. ....","Created":"2014-05-03","Visited":"2014-05-02","UserName":"Team Twins07","MembershipLevel":1,"AccountID":9409323,"AccountGuid":"a2e25fd9-7366-4a22-9586-caa02d4c5321","Email":"","AvatarImage":"","GeocacheFindCount":1,"GeocacheHideCount":0,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Member","GroupImageUrl":"/images/icons/reg_user.gif"},"Images":[{"ImageID":22187997,"ImageGuid":"916c25f5-7d7e-4e50-a458-419ef0a4e77c","Name":"20140502_173902","Descr":"","FileName":"916c25f5-7d7e-4e50-a458-419ef0a4e77c.jpg","Created":"2014-05-03","LogID":403600129,"CacheID":1811409,"ImageUrl":null}]},{"LogID":402752947,"CacheID":1811409,"LogGuid":"c1c56e5f-deb3-4114-9e43-34798f92225a","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Write note","LogTypeImage":"4.png","LogText":"TB in.","Created":"2014-04-30","Visited":"2014-04-30","UserName":"blafoo","MembershipLevel":3,"AccountID":1912314,"AccountGuid":"0564a940-8311-40ee-8e76-7e91b2cf6284","Email":"","AvatarImage":"816ea7ab-8878-4e22-8097-ba18294ac8d9.png","GeocacheFindCount":1308,"GeocacheHideCount":9,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":401272415,"CacheID":1811409,"LogGuid":"e89b9622-f532-428b-bde2-f525e49808c6","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Erst dachte ich ui ganz schön lang, aber war doch nicht so schlimm. Die Stationen haben Spaß gemacht, beim Final musste ein wenig länger gesucht werden. TFTC","Created":"2014-04-26","Visited":"2014-04-26","UserName":"Enyea","MembershipLevel":3,"AccountID":2962113,"AccountGuid":"ade3f2ed-83e1-4115-a02e-58242bd190ba","Email":"","AvatarImage":"9bcd4d5f-e1ac-4712-8486-ec10e1f84b7d.jpg","GeocacheFindCount":4390,"GeocacheHideCount":16,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":400302961,"CacheID":1811409,"LogGuid":"974e7902-4729-433f-9b38-ae592960c93c","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Heute nach einigen schwierigkeiten doch noch gefunden. \"dem weg in nördliche richtung folgen\" ist aber auch ein falscher freund xD","Created":"2014-04-22","Visited":"2014-04-22","UserName":"ermd2","MembershipLevel":3,"AccountID":7163462,"AccountGuid":"54ee8ceb-8e0b-4ef9-b941-d11d9eddbef1","Email":"","AvatarImage":"b0ddf3d7-58b8-4d03-9cc9-e69c3bfba8a2.jpg","GeocacheFindCount":136,"GeocacheHideCount":0,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":408518056,"CacheID":1811409,"LogGuid":"43f11ea8-e005-4083-9bd3-fc8a9688371a","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Zusammen mit baldi durch den Kinderwald. Bis auf eine Station alles prima gefunden. Danke für die nette Runde.<br />Kunterbunt","Created":"2014-05-19","Visited":"2014-04-06","UserName":"kunterbunt","MembershipLevel":3,"AccountID":1050708,"AccountGuid":"096316ae-7804-4f63-981e-87a028f1dda8","Email":"","AvatarImage":"4e95a982-31fa-41dc-8d5a-9d8ca9ab37a0.jpg","GeocacheFindCount":1698,"GeocacheHideCount":4,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":407381811,"CacheID":1811409,"LogGuid":"f99d5df4-eac5-441f-af4c-31e118f705a5","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Kleine Erkundungstour mit kunterbunt.<br /><br />Leider war die Seilfaehre nicht da. An der naechsten Station dann Muggles.<br /><br />Das Finale konnten wir trotzdem finden.<br /><br />Danke fuer den Cache<br /><br />baldi","Created":"2014-05-15","Visited":"2014-04-06","UserName":"baldi","MembershipLevel":3,"AccountID":565190,"AccountGuid":"a9710d10-99c2-4c4e-97ca-5c5e3aedaebf","Email":"","AvatarImage":"","GeocacheFindCount":3055,"GeocacheHideCount":2,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":390148964,"CacheID":1811409,"LogGuid":"1ef5171b-3346-4928-9cdf-657cf5c6f181","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Eine schöne Runde...nach kurzer Zeit konnte die Dose gefunden werden.<br />DFDC / CaDi","Created":"2014-03-21","Visited":"2014-03-21","UserName":"derek78","MembershipLevel":3,"AccountID":2365504,"AccountGuid":"c3f49617-12e7-423c-9f72-a66bbbc031cf","Email":"","AvatarImage":"a8ecb3ee-f5cf-4015-b186-a96c7dbaed4a.jpg","GeocacheFindCount":4920,"GeocacheHideCount":9,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":388678520,"CacheID":1811409,"LogGuid":"8f31369b-a5e8-4dee-83fc-ebe9dd15e9bc","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"im Team mit The Chaos Family schnell gefunden und geloggt","Created":"2014-03-15","Visited":"2014-03-09","UserName":"LüLei2014","MembershipLevel":1,"AccountID":8019634,"AccountGuid":"0c7fae0b-f471-48a4-b70f-9d6a966f7987","Email":"","AvatarImage":"","GeocacheFindCount":4,"GeocacheHideCount":0,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Member","GroupImageUrl":"/images/icons/reg_user.gif"},"Images":[]},{"LogID":387323524,"CacheID":1811409,"LogGuid":"d7f989bb-c44a-40ac-969b-8d9b8744e01d","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"So dies war der heutige Abschluss unsere Kinder hatten tierisch Spaß leider war die Seilfähre nicht da schade","Created":"2014-03-09","Visited":"2014-03-09","UserName":"The Chaos Family","MembershipLevel":3,"AccountID":7626789,"AccountGuid":"293958d3-c49d-423f-ae15-79a098ba6f55","Email":"","AvatarImage":"5638409b-df2c-4e34-bd26-97c70a5714e8.jpg","GeocacheFindCount":1022,"GeocacheHideCount":0,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":387252010,"CacheID":1811409,"LogGuid":"cf0ade9c-36f2-494f-842e-c517750e7b06","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Diesen Cache haben wir heute als Vorbereitung für ein Event mit einigen Kindern am nächsten Wochenende \"getestet\" und für gut befunden. Wir werden nächste Woche wieder kommen und den Cache dann mit den Kindern machen. DfdC!","Created":"2014-03-09","Visited":"2014-03-09","UserName":"SordChian","MembershipLevel":1,"AccountID":3876908,"AccountGuid":"7726406e-0682-409a-8c60-71c2a0105bc1","Email":"","AvatarImage":"a02ba54c-2eb9-4499-9ea5-18a81d99a50e.jpg","GeocacheFindCount":64,"GeocacheHideCount":0,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Member","GroupImageUrl":"/images/icons/reg_user.gif"},"Images":[]}], "pageInfo": { "idx":1, "size": 25, "totalRows": 218, "rows": 218 } };
var gaToken = 'UA-2020240-1';ga('create', 'UA-2020240-35', 'geocaching.com'); ga('send', 'pageview');//]]>
</script>
</form>
    <script src="/js/jquery_plugins/tinynav.min.js"></script>
    <script src="/js/matchMedia.js"></script>
    <script src="/account/scripts/custom/message-center-header-widget.js"></script>
    <script>
        $('#messagecenterheaderwidget').messageCenterHeaderWidget();
 
        var browserType = {
            IE: !!(window.attachEvent && !window.opera),
            Opera: !!window.opera,
            WebKit: navigator.userAgent.indexOf('AppleWebKit/') > -1,
            Gecko: navigator.userAgent.indexOf('Gecko') > -1 && navigator.userAgent.indexOf('KHTML') == -1,
            MobileSafari: !!navigator.userAgent.match(/Apple.*Mobile.*Safari/)
        };

        // Modernizr only identifies browsers that support touch events; Windows Phone and webOS handle touch differently
        var isMobile = (/(webOS|hpwOS|IEMobile)/).test(navigator.userAgent);

        $(function () {
            var $topMenuLinks = $('.Menu > li');

            $topMenuLinks.children('a').each(function () {
                $(this).on('touchstart click', function (e) {
                    e.stopPropagation();

                    var $this = $(this),
                        $parent = $(this).parent();

                    $topMenuLinks.removeClass('hover');

                    if (!$parent.hasClass('hover') && $this.hasClass('Dropdown')) {
                        e.preventDefault();
                        $parent.addClass('hover');
                    }
                });
            });

            var $userMenuBtn = $('.logged-in-user .li-user-toggle');

            $userMenuBtn.on('touchstart click', function (e) {
                e.stopPropagation();
                $(this).next('ul').addClass('user-expanded');
            });

            $(document).on('click', function (e) {
                if ($('.user-expanded').length && !$(e.target).parents().hasClass("user-expanded")) {
                    $('.user-expanded').removeClass("user-expanded");
                }
                if (!$(e.target).parents().hasClass("Menu")) {
                    $topMenuLinks.removeClass("hover");
                }
            });

            if (isMobile || Modernizr.touch) {
                // Convert language dropdown to native select
                $("ul.language-list .selected").parent().addClass("selected");
                $(".selected-language a, ul.language-list").hide();
                $(".language-list").tinyNav({
                    active: 'selected'
                });
            }

            
            // Constructing a Twitter-esque Login:
            $(".SignInLink").on('click', function (e) {
                if (window.matchMedia("(min-width: 1000px)").matches) {
                    e.preventDefault();
                    $("#SignInWidget").toggle();
                    $(".ProfileWidget").toggleClass("WidgetOpen");
                    $(this).blur();
                    $("#ctl00_tbUsername").focus();
                    $(document).click(function (e) {
                        if (!$(e.target).parents().hasClass("ProfileWidget")) {
                            $("#SignInWidget").hide();
                            $(".ProfileWidget").removeClass("WidgetOpen");
                        }
                    });
                    return false;
                }               
            });
            

            if (!("placeholder" in document.createElement("input"))) {
                $("#SignInWidget label").removeClass("hideMe");
            }

            // Hide the warning message if the user closed it already
            if ($.cookie('hide_warning') != null) {
                $(".WarningMessage").hide();
            } else {
                $("#warningCloseButton").click(function () {
                    $('.WarningMessage').hide('blind');
                    $.cookie('hide_warning', 'true', { expires: 1 });
                });
            }

            function isiOS() {
                return (
                    (navigator.userAgent.match(/(iPhone)|(iPod)|(iPad)/i))
                );
            }
        });
    </script>
    
    <script type="text/javascript">
    <!--

    function s2gps(guid) {
        var w = window.open('/seek/sendtogps.aspx?guid=' + guid, 's2gps', config='width=450,height=450,toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,directories=no,status=no');
        w.focus();
    }

    function s2phone(wpid) {
        window.location.href='/seek/sendtophone.aspx?gc=' + wpid;
    }

    function pl(lc) {
        document.location.href='/seek/cache_details_print.aspx?guid=' + guid + '&numlogs=' + lc +'&pt=full&lt=letter&decrypt='+ ((dh)?'y':'n');
    }
    
    function setNotification(id) {
        //new Effect.Highlight(id, {startcolor:'#ffffff', endcolor:'#ffff99', restorecolor:'#ffff99', duration:3.0, queue:'front'});
        //new Effect.Highlight(id, {startcolor:'#ffff99', endcolor:'#ffffff', restorecolor:'#ffffff', duration:5.0, queue:'end'});
    }
    
    function cmo(id) {
        Cookie.set('sn', true);
    }

    function pp(img) {
        var w = window.open(img);
        w.focus();
    }
        
    var map, bounds;
    var canUpdateFavoriteStatus = true;
    var decryptLogs = (urlParams["decrypt"] && urlParams["decrypt"] == "y") ? true : false;
    var logInitialLoaded = false;
    var $tfoot = $("#cache_logs_table").find("tfoot");
    var currentPageIdx = 1, totalPages = 1, pageSize = 10;
    var isBusy = false;
        
    var locString = {
        decrypt: 'Decrypt',
            encrypt: 'Encrypt'
        };

        $("#tmpl_CacheLogImagesTitle").template("tmplCacheLogImagesTitle");
        $("#tmpl_CacheLogImages").template("tmplCacheLogImages");
        $("#tmpl_CacheLogRow").template("tmplCacheLogRow");

        $(".EncryptDecrypt")
            .button({ icons: { secondary: 'ui-icon-arrowreturnthick-1-w'} })
            .click(function (e) {
                e.preventDefault();
                $("tr.log-row").each(function (i, obj) {
                    var $obj = $(obj);
                    if ($obj.data("encoded") == true) {
                        var lt = $obj.find("p.LogText");
                        //var ltDecoded = $('<div />').html(lt.html()).text();
                        lt.html(convertROTStringWithBrackets(lt.html()));
                    }
                });

                decryptLogs = !decryptLogs;

                $("a.decrypt-link").html(decryptLogs ? locString.encrypt : locString.decrypt);

                return false;
            });
            
        function appendNewLogs(obj) {

            totalPages = obj.pageInfo.totalPages;

            var $newBody = $(document.createElement("TBODY"));

            $("#tmpl_CacheLogRow").tmpl(obj.data,{ includeAvatars: includeAvatars }).appendTo($newBody);

            $newBody.find("a.tb_images").each(function()
            {
                var $this = $(this);
                $this.fancybox({
                    'type': 'image', 
                    'titlePosition': 'inside', 
                    'padding': 10,
                    titleFormat: function() { return $this.data('title'); } 
                });
            });

            $("#cache_logs_table")
                .append($newBody.children());

            currentPageIdx = obj.pageInfo.idx + 1;
            pageSize = obj.pageInfo.size;
        }

        var showScroll = false;

        function callLogLoad(hideFooter) {
            if (screen.width > 1090){
                showScroll = true;
            }
            $.getJSON("/seek/geocache.logbook", { tkn: userToken, idx: currentPageIdx, num: pageSize, decrypt: decryptLogs },
                function (response) {
                    if (response.status == "success") {
                        appendNewLogs(response);
                        if( hideFooter || (totalPages < currentPageIdx) ) {
                            $tfoot.hide();
                        }
                    } else if (response.status == "error" && response.value == "1") {
                        // reload the page since the data had expired.
                        window.location.reload();
                    }
                    isBusy = false;
                });
        }

        $("#add_to_favorites").click(function () {

            if (canUpdateFavoriteStatus) {
                canUpdateFavoriteStatus = false;

                var fv = parseInt($(".favorite-value").text());
                fv++;
                $(".favorite-value").text(fv);

                var fr = parseInt($(".favorite-rank").text());
                fr--;
                $(".favorite-rank").text(fr);

                $("#pnlNonfavoriteCache").fadeOut("fast", function () {
                    $("#pnlFavoriteCache").fadeIn("fast");
                });

                $.ajax({
                    type: "POST",
                    cache: false,
                    url: '/datastore/favorites.svc/update?u=' + userToken + '&f=true',
                    success: function () {
                        canUpdateFavoriteStatus = true;
                        gotScore = false;
                        showFavoriteScore();
                    }
                });

                return false;
            }
        });

        $("#remove_from_favorites").click(function () {

            if (canUpdateFavoriteStatus) {
                canUpdateFavoriteStatus = false;

                var fv = parseInt($(".favorite-value").text());
                fv--;
                $(".favorite-value").text(fv);

                var fr = parseInt($(".favorite-rank").text());
                fr++;
                $(".favorite-rank").text(fr);

                $("#pnlFavoriteCache").fadeOut("fast", function () {
                    $("#pnlNonfavoriteCache").fadeIn("fast");
                });

                $.ajax({
                    type: "POST",
                    cache: false,
                    url: '/datastore/favorites.svc/update?u=' + userToken + '&f=false',
                    success: function () {
                        canUpdateFavoriteStatus = true;
                        gotScore = false;
                        showFavoriteScore();
                    }
                });

                return false;
            }
        });

        $(function () {

            // CSP Section
            if ($("#cspMessage").length) {
                
                var editLink = $('a[href*="report.aspx"]').attr('href');

                $("#cspMessage").prepend('<P><strong>Already submitted this geocache?</strong> Please check below for the Reviewer’s notes and make any necessary changes before you resubmit. You can also respond by clicking "Log Your Visit" and posting a Reviewer Note.</P>');
                $("#cspMessage").prepend('<P>Your geocache has not been published. Once your geocache is in place and all of the details have been entered, click "Submit for Review". A volunteer reviewer will begin the review process within about 7 days.</P>');
                    
                $("#cspGoBack").click(function (e) {
                    e.preventDefault();
                    window.location = editLink;
                    return false;
                });
                    
                $("#cspSubmit").click(function (e) {
                    e.preventDefault();
                    $.pageMethod("/seek/cache_details.aspx/EnableCSPCache", JSON.stringify({ dto: { ut: userToken } }), function (r) {
                        var r = JSON.parse(r.d);
                        if (r.success == true) {
                            window.location = '/seek/cache_details.aspx?guid=' + r.guid;
                        } else {
                            alert("There was an error enabling your cache.");
                        }
                    });
                    return false;
                });
                    
                
            }


            //override coords
            if (typeof(userDefinedCoords) != "undefined") {
                if (userDefinedCoords.status == "success" && userDefinedCoords.data.isUserDefined == true) {
                    mapLatLng = $.extend({}, mapLatLng, userDefinedCoords.data);
                    $("#uxLatLon")
                        .data("isOverridden", true)
                        .addClass("myLatLon");
                } else if (userDefinedCoords.status == "success") {
                    mapLatLng = $.extend({}, mapLatLng, userDefinedCoords.data);
                } else {
                    $("#uxLatLonLink").contents().unwrap();
                }
            } else {
                $("#uxLatLonLink").contents().unwrap();
            }
            
            
            var cacheNoteText = {
                DefaultText: 'Click to enter a note',
                ErrorInSaving: 'There was an error saving page.  Please refresh the page and try again.',
                SavingText: 'Please wait, saving your note...'
            };

                

            $("time.timeago").timeago();

            $(".button").button();

            var sn = Cookie.get('sn');

            if ($('#trNotPM').length > 0) {
                $('#trNotPM').toggle(!sn);
            }

            $("#cache_note").editInPlace({
                callback: function (unused, enteredText) {
                    var me = $(this);

                    var et = $.trim(enteredText);
                    if (et.length > 500 ) {
                            et = et.substr(0, 500);
                    }
                    $.pageMethod("/seek/cache_details.aspx/SetUserCacheNote", JSON.stringify({ dto: { et: et, ut: userToken} }), function (r) {
                        var r = JSON.parse(r.d);
                        if (r.success == true) {
                            if ($.trim(r.note) == "") {
                                $("#cache_note").text(cacheNoteText.DefaultText);
                    } else {
                                $("#cache_note").text(r.note);
                    }

                            me.effect('highlight', { color: '#ffb84c' }, 'slow');
                    } else {
                            alert(cacheNoteText.ErrorInSaving);
                            $("#cache_note").text(cacheNoteText.DefaultText);
                    }

                    });

                    return cacheNoteText.SavingText;
                }
                        , default_text: cacheNoteText.DefaultText
                        , field_type: "textarea"
                        , textarea_rows: "7"
                        , textarea_cols: "65"
                        , show_buttons: true
                        , bg_over: "#dad7cb"
                //, callback_skip_dom_reset: true

            });

            $("#lnk_slippyMap").click(function(e) {
                e.preventDefault();
                loadDynamicMap();
                return false;
            });

            $(".inplace_field").live("focus", function () {
                if ($(this).data("created") == null) {
                    $(this).data("created", true)
                    $(this).countable({
                        maxLength: 500
                    });
                }
            });
                
            $("#pcn_help").qtip({ 
                content: 'Enter your own notes here.  No other user will be able to access them.',
                position: {
                    my: 'top center',
                    at: 'bottom center'
                },
                style: {
                    classes: 'ui-tooltip-dark ui-tooltip-rounded pcn-tooltip'
                },
            });
                    
            $("a.decrypt-link").html(decryptLogs ? locString.encrypt : locString.decrypt);
                        
            if ($("#cache_logs_container").length > 0) {
            
                appendNewLogs(initalLogs);

                if (DetectMobileQuick()) {
                    $("#pnlButtonLoad")
                        .show()
                        .find("a.MobileButton")
                            .click(function (e) {
                                e.preventDefault();
                                callLogLoad(false);
                                return false;
                            })
                            .button();
                    if(!DetectTierTablet()){
                        $("a.MobileButton").addClass("Phone");
                    }
                } else {
                    $("#pnlLazyLoad").show();
                    
                    $(window).endlessScroll({
                        fireOnce: true,
                        fireDelay: 500,
                        bottomPixels: ($(document).height() - $("#cache_logs_container").offset().top) + 50,
                        ceaseFire: function(){
                            // stop the scrolling if the last page is reached.
                            return (isLoggedIn == false) || (totalPages < currentPageIdx);
                        },
                        callback: function() {
                            if (!isBusy) {
                            
                                isBusy = true;
                                $tfoot.show();
                                callLogLoad(true);
                            }
                        }
                    });
                }
            }

            if (!isLoggedIn) {
                $("#cache_logs_table").find("tfoot").hide();
            }

            if (mapLatLng != null) {

                $("#uxLatLonLink").qtip({
                    suppress:false,
                    content: buildCacheCoordMenu(),
                    position: {
                        my: 'left top',
                        at: 'right top',
                        adjust: {
                            x: 10, y: -10
                        }
                    },
                    show: {
                        ready: false,
                        event: "click",
                        solo: true
                    }, hide: {
                        event: 'unfocus'
                    },
                    style: {
                        tip: {
                            corner: false
                        },
                        classes: 'ui-tooltip-widget'
                    },
                    events: {
                        show: function () {
                            if ($("#uxLatLon").data("isOverridden")) {
                                $("a.ccu-restore").show();
                            } else {
                                $("a.ccu-restore").hide();
                            }

                            if (userDefinedCoords.status != "success") {
                                $("div.ccu-update").hide();
                            } else {
                                $("div.ccu-update").show();
                            }
                        }
                    }
                }).click(function (e) {
                    e.preventDefault();
                    return false;
                });
            
                $("#ctl00_ContentBody_uxNotesAboutPrinting").fancybox({
                    overlayShow: false
                });
                
                setStaticMaps();
            }
        });

        function setStaticMaps() {
            
            var map = new L.Map('map_preview_canvas', {
                center: new L.LatLng(mapLatLng.lat, mapLatLng.lng),
                zoom: 10,
                doubleClickZoom: false,
                dragging: false,
                touchZoom: false,
                scrollWheelZoom: false,
                attributionControl: false
            })
            .addControl(new L.Control.Attribution({ prefix: '<a href="/about/maps.aspx#leaflet" target="_blank">About our maps</a>' }));

            var mapLarge = L.map('map_canvas', {
                center: [mapLatLng.lat, mapLatLng.lng],
                zoom: 14,
                doubleClickZoom: true,
                dragging: true,
                touchZoom: false,
                scrollWheelZoom: false,
                zoomControl: true,
                attributionControl: false
            })
            .addControl(new L.Control.Attribution({ prefix: '<a href="/about/maps.aspx#leaflet" target="_blank">About our maps</a>' }))
            .addControl(new L.Control.Scale());

            var tileOptions = {
                tileUrl: "https://otile{s}-s.mqcdn.com/tiles/1.0.0/osm/{z}/{x}/{y}.jpg",
                //name: "mpqosm",
                //alt: "MapQuest",
                subdomains: "1234",
                //tileSize: 256,
                minZoom: 0,
                maxZoom: 18
            };

            map.addLayer(L.tileLayer(tileOptions.tileUrl, tileOptions));

            L.tileLayer(tileOptions.tileUrl, tileOptions)
                .addTo(mapLarge);

            var pinIcon = L.Icon.extend({
                iconSize: new L.Point(20, 23),
                iconAnchor: new L.Point(10,23),
                shadowUrl: null
            });

            var mkA = new L.Marker(new L.LatLng(mapLatLng.lat, mapLatLng.lng), 
                {
                    icon: new pinIcon({iconUrl:'/images/wpttypes/pins/' + mapLatLng.type + '.png', iconAnchor: new L.Point(10,23)}),
                    title: mapLatLng.name
                })
                .on("click", function () {
                    document.getElementById("uxlrgMap").scrollIntoView(true);
                    return false;
                });

            L.marker([mapLatLng.lat, mapLatLng.lng], {
                icon: L.icon({iconUrl: '/images/wpttypes/pins/' + mapLatLng.type + '.png', iconSize: [20, 23], iconAnchor: [10, 23]}),
                clickable: false, 
                //zIndexOffset: 99, 
                title: mapLatLng.name
            }).addTo(mapLarge);

            map.addLayer(mkA);
                
            if (cmapAdditionalWaypoints != null && cmapAdditionalWaypoints.length > 0) {

                var llBounds = L.latLngBounds([mapLatLng.lat, mapLatLng.lng], [mapLatLng.lat, mapLatLng.lng]);
                
                for (var x = 0, len = cmapAdditionalWaypoints.length; x < len; x++) {

                    var item = cmapAdditionalWaypoints[x],
                        ll = [item.lat, item.lng];
                        
                        L.marker(ll, {
                            icon:  L.icon({ iconUrl: '/images/wpttypes/pins/'+ item.type + '.png', iconSize: [20, 23], iconAnchor: [10, 23] }),
                            title: item.name,
                            clickable: false
                        }).addTo(mapLarge);

                    llBounds.extend(ll);
                }
                
                window.setTimeout(function () {
                    mapLarge.fitBounds(llBounds.pad(.5));    
                }, 100);
                
            } 
        }

        var lnkDH = $('#ctl00_ContentBody_lnkDH');
        function dht() {
            try {
                $('#div_hint').html(convertROTStringWithBrackets($('#div_hint').html()));
                var linkText = ((lnkDH.attr('title') == 'Decrypt') ? 'Encrypt' : 'Decrypt');
                lnkDH
                    .text(linkText)
                    .attr('title', linkText);
            } catch (e) {
                alert(e);
                return false;
            }
            return false;
        } 

        function buildCacheCoordMenu() {
            var curLatLng = new LatLon(mapLatLng.lat, mapLatLng.lng)
            $.template( "tmplCacheCoordinateUpdate_CoordItem", "<tr><td nowrap='nowrap'>${t}</td><td class='ccc-coord' nowrap='nowrap' dataum='${k}'>${v}</td></tr>" );

            var $menu = $("<div></div>");

            $( "#tmpl_CacheCoordinateUpdate" ).tmpl( {
                ll: [mapLatLng.lat, mapLatLng.lng], 
                ll_formatted: mapLatLng.oldLatLngDisplay
            } ).appendTo( $menu );

            $menu.find("button.ccu-button").button();

            $menu.delegate("button.ccu-parse", "click", function (e) {
                e.preventDefault();
                var $this = $(e.target),
                    $parse =$this.closest('dd').find(".cc-parse-text"),
                    parseCoords = $.trim($parse.val());
                    
                if (parseCoords.length == 0) {
                    alert('Please provide valid coordinates.');    
                } else {
                    $.getJSON("/api/geocode", { parse: parseCoords}, function (response) {
                        if (response.status == "success") {
                            var newLatLng = new LatLon(response.data.lat, response.data.lng);
                                
                            // update the displayed coords    
                            var dist = curLatLng.rhumbDistanceTo(newLatLng);
                            var bearingTo = curLatLng.rhumbBearingTo(newLatLng);
                            var bearing = bearingTo >= 0 || bearingTo < 22.5 ? "N" : bearingTo >= 22.5 || bearingTo < 67.5 ? "NE" : bearingTo >= 67.5 || bearingTo < 112.5 ? "E" : bearingTo >= 112.5 || bearingTo < 157.5 ? "SE" : bearingTo >= 157.5 || bearingTo < 202.5 ? "S" : bearingTo >= 202.5 || bearingTo < 247.5 ? "SW" : bearingTo >= 247.5 || bearingTo < 292.5 ? "W" : bearingTo >= 292.5 || bearingTo < 337.5 ? "NW" : "N";
                                
                            var formats = response.data.formats;
                            // all these finds, make me feel dirty
                            $menu
                                .find("span.ccu-parseverify-coords").text(formats.DM).end()
                                .find("dl.ccu-parse").hide().end()
                                .find("dl.ccu-parseverify").show().end()
                                .find("button.ccu-parseverify-accept")
                                    .data("utm", '')
                                    .data("dm", formats.DM)
                                    .data("lat", response.data.lat)
                                    .data("lng", response.data.lng)
                                    .end();
                        } else {
                            alert("Sorry unable to parse the coordinates you entered.");
                        }
                    });
                }
                        
                return false;
            });

            $menu.delegate("button.ccu-parseverify-accept", "click", function (e) {
                e.preventDefault();
                var $this = $(this);
                // update to webmethod
                $.pageMethod("/seek/cache_details.aspx/SetUserCoordinate", JSON.stringify({ dto: { data: {lat: $this.data("lat"), lng: $this.data("lng") }, ut: userToken } }), function (r) {
                    var r = JSON.parse(r.d);
                    if (r.status == "success") {
                        window.location.reload();
                    } else {
                        $("#uxLatLonLink").qtip('hide');
                    }
                    
                });
                
                return false;
            });

            $menu.delegate("button.ccu-parseverify-cancel", "click", function (e) {
                e.preventDefault();
                $menu
                    .find("input.cc-parse-text").val('').end()
                    .find("dl.ccu-parse").show().end()
                    .find("dl.ccu-parseverify").hide().end();
                return false;
            });

            $menu.delegate("a.ccu-restore", "click", function (e) {
                e.preventDefault();

                $.pageMethod("/seek/cache_details.aspx/ResetUserCoordinate", JSON.stringify({ dto: { ut: userToken } }), function (r) {
                    var r = JSON.parse(r.d);
                    if (r.status == "success") {
                        window.location.reload();
                    }
                });
                
                return false;
            });

            return $menu;
        }

        GSPK = window.GSPK || {};
        GSPK.Selector = {};
        GSPK.Selector.getSelected = function(){
            var t = null;
            if ( window.getSelection ){
                t = window.getSelection();
            }else if(document.getSelection){
                t = document.getSelection();
            }else if(document.selection){
                t = document.selection.createRange().text;
            }
            return t;
        }
        //-->
    </script>
    <script id="loc_favPointsScoreDesc" type="text/html">
        Favorites/Premium Logs
    </script>
    <script type="text/javascript" language="javascript">
            <!--
    var gotScore = false;
    var favDropDown = $('.favorite-dropdown');
    var favContainer = $('.favorite-container');

    function showFavoriteScore() {
        $('#imgFavoriteScore').attr('src', '/images/loading3.gif');

        $('#uxFavoriteScore').parent().fadeTo(200, .001, function () {
            $.ajax({
                type: "POST",
                cache: false,
                url: '/datastore/favorites.svc/score?u=' + userToken,
                success: function (scoreResult) {
                    gotScore = true;

                    var score = 0;

                    if(scoreResult) {
                        score = scoreResult;
                    }

                    if(score > 100) {
                        score = 100;
                    }
                       
                    $('#imgFavoriteScore').attr('src', '/images/favorites/piecharts/' + score + '.png');
                    var pieDesc = (score < 1 ? "<1" : score) + '% ' + $("#loc_favPointsScoreDesc").text().trim();
                    $('#imgFavoriteScore').attr('alt', pieDesc);
                    $('#imgFavoriteScore').attr('title', pieDesc);

                    $('#uxFavoriteScore').parent().fadeTo(1000, 1);
                    $('#uxFavoriteScore').html('<strong>' + (score < 1 ? "<1" : score) + '%</strong> ' + $("#loc_favPointsScoreDesc").html());
                }
            });
        });
    }
    var scrollId = false,
        logTop = 0;

    if (document.getElementById("cache_logs_container") != null){
        logTop = $("#cache_logs_container").position().top;
    }


    $(window).on("scroll", function() {
        if (scrollId != false) {
            window.clearTimeout(scrollId);
            scrollId = false;
        }

        scrollId = window.setTimeout(function() {
            if (showScroll){
                if ($(this).scrollTop()< logTop) {
                    $("#topScroll").fadeOut();
                } else {
                    $("#topScroll").fadeIn();
                }
            }}, 250);
    });

    $(document).bind('mouseup', function (e) {
        var $clicked = $(e.target);
        if (!$clicked.parents().hasClass("favorite-dropdown") && !$clicked.parents().hasClass("FavoriteWidget")) {
            favDropDown.hide(1, function () {
                favContainer.addClass('favorite-container');
                favContainer.removeClass('favorite-container-open');
            });
        }
    });

    $('#uxFavContainerLink').click(function () {
        if ($(favDropDown).is(':visible')) {
            favDropDown.hide(1, function(){
                favContainer.addClass('favorite-container');
                favContainer.removeClass('favorite-container-open');
            });                
        }
        else {
            if (!gotScore) {
                showFavoriteScore();
            }

            favContainer.addClass('favorite-container-open');
            favContainer.removeClass('favorite-container');
            favDropDown.show(1);
        }
    });

    //  End -->
    </script>


    <script type="text/javascript">


        $(document).ready(function () {
            $('#hlUpgrade').bind('click', function () {
                var _this = $(this);
                _gaq.push(['_trackEvent', 'Geocaching', 'Premium Upsell', 'Mini-profile Widget']);
                setTimeout(function () {            // Chrome requires a slight delay for tracking to fire.
                    window.location.href = _this.attr('href');
                }, 100);
                return false;
            });
        });

        
        _gaq.push(['_setCustomVar', 1, 'AccountId', 1750448, 1]);
        

        _gaq.push(['_require', 'inpage_linkid', '//www.google-analytics.com/plugins/ga/inpage_linkid.js']);
        _gaq.push(['_setAccount', gaToken]);
        _gaq.push(['_trackPageview']);

        $(function () {
            $("a.language").click(function (e) {
                e.preventDefault();
                window.location.replace(window.location.href + (window.location.search.indexOf("?") == -1 ? "?" : "&") + "lang=" + $(this).attr("lang"));
            });
        });

        var _qevents = _qevents || [];
        _qevents.push({ qacct: "p-f6VPrfmR4cujU" });

        (function () {
            var elem = document.createElement('script');

            elem.src = (document.location.protocol == "https:" ? "https://secure" : "http://edge") + ".quantserve.com/quant.js";
            elem.async = true;
            elem.type = "text/javascript";
            var scpt = document.getElementsByTagName('script')[0];
            scpt.parentNode.insertBefore(elem, scpt);
        })();



    </script>
    <noscript>
        <div style="display: none;">
            <img src="http://pixel.quantserve.com/pixel/p-f6VPrfmR4cujU.gif" height="1" width="1"
                alt="Quantcast" />
        </div>
    </noscript>
    <!-- Server: WEB01; Build: Tucson.Main.release-20150325.1.Release_265 
 -->
</body>
</html>