aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/cgeo/geocaching/test/mock/GC2JVEH.html
blob: f07ad24deb990e888267af2562a590a2601a435a (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


<!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>
	GC2JVEH Auf den Spuren des Indianer Jones Teil 1 (Unknown Cache) in Niedersachsen, Germany created by indianerjones, der merlyn,reflektordetektor
</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=GC2JVEH&amp;title=auf-den-spuren-des-indianer-jones-teil-1" /><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=LW0HKwsIsnIiQyE_ovDSvnj5M2xR0XjkVV3GaTHUlRI1" 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="Solve the mystery and then use a smartphone or GPS device to navigate to the solution coordinates. 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 3 and difficulty is 5 (out of 5)." property="og:description" /><meta name="og:title" content="Auf den Spuren des Indianer Jones Teil 1" property="og:title" /><meta name="og:image" content="http://www.geocaching.com/images/facebook/wpttypes/8.png" property="og:image" /><meta name="description" content="Auf den Spuren des Indianer Jones Teil 1 (GC2JVEH) was created by indianerjones, der merlyn,reflektordetektor on 11/28/2010. It&#39;s a Small size geocache, with difficulty of 5, terrain of 3. It&#39;s located in Niedersachsen, Germany.Aufgabe zum Start: Finde die Schattenlinie. !!!Die Skizze mit den Zahlen solltest du mitnehmen!!! Du solltest den cache so beginnen, das du station 2 in der Zeit von mo- fr von 11-19 Uhr und sa von 11-16 Uhr erledigt hast." /><link rel="canonical" href="http://www.geocaching.com/seek/cache_details.aspx?guid=07270e8c-72ec-4821-8cb7-b01483f94cb5" /><link rel="alternate" href="../datastore/rss_galleryimages.ashx?guid=07270e8c-72ec-4821-8cb7-b01483f94cb5" type="application/rss+xml" title="[Gallery Images]" id="GalleryImages" /></head>

<body >
    <form name="aspnetForm" method="post" action="/geocache/GC2JVEH_auf-den-spuren-des-indianer-jones-teil-1" 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="2" />
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="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" />
<input type="hidden" name="__VIEWSTATE1" id="__VIEWSTATE1" 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=LsSN37T_JTo8WmXc7IWe9h7QNKB5hH17UtyHRfQt428U3aulvj53CANg-qZVzIBuh0jojGRwyA5u6DVnEet85JW-JpWduEGLE0VE-2wGHR4yu7MNj7XtsTLWd21Jk8RZENZmygJcHOHGMS1oisYKTWQSIQA1" type="text/javascript"></script>
<script src="/ScriptResource.axd?d=VUtFLQIK94pF36sSxa5M5Q4KyVgkk4aq_Lj3yxNWv9FE_GBcdEQWlyUYzpoPTO27D4G7EbYHTqxoW35XPdin3tebmTxp-wSfJzzK8-nJzs2HapzFx4fuNPR6OjDBQmtyWLMl9s_v9cfV2Mm7C3dG-PYITU2UMwNSjAESeyXFqfw8frZJE2LykLAMOmhcIMdVDEZ3towfhsTqOSZWPCdiMeHylJ16anMqLsL7z0oT5vyUbvIiPYHpYKrAEJIDFxritjPVOv9orjoRf-8NlzG0PwzvCPCUNUOn0q725aaI6lCODxhDBiPw-ciHHQzmbbGdaID-mnjIV9nX6-dgUyOpCAzwZXAoBQPQ6TU3GjtYmetglM7I31meDWRS7sDj-e3m--4pB0SzCNbw9t_ZQ6DjARVQyTvBJksCHM-RcfVHoBtuq9rOTWynsJGmm_Lg2JD7o-KVYJOAuPGcUEcNWxswz-cLWquZQ3_vABHJxAaFz-lnYYwzEyEWn9I2tPIwXjHtZVAB3g0G-dsEEFKNFYXpU1N0r25KNq4NEKXKQg1QI99Bxq6sUV0UkKPNGk0f24VH7_RXyG7L9I3rXDfYaVq1X300crsUh2Cn0-mUkdpiqhtb63KB_jWzXr9HEzeR_socdD-U_PhMKdYigWqerk55eRcMsVPuiRN1yBkFE3GQiZawEqjI0" 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 class="SignedInProfileLink" href="/my/default.aspx" title="View Your Profile">
                                    <span class="avatar">
                                        <img id="ctl00_hlHeaderAvatar" src="https://img.geocaching.com/avatar/642d2771-424e-4ee6-beb6-efecde3406fc.jpg" style="border-width:0px;" />
                                    </span>
                                    <span class="li-user-info">
                                        <span>Bananeweizen</span>
                                        <span class="cache-count">743 Finds</span>
                                    </span>
                                </a>
                                <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%3dGC2JVEH%26title%3dauf-den-spuren-des-indianer-jones-teil-1">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="../play/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">GC2JVEH</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/8.gif" alt="Mystery Cache" title="Mystery Cache" /></a>
            </p>
            
            <h2 class="NoBottomSpacing">
                <span id="ctl00_ContentBody_CacheName">Auf den Spuren des Indianer Jones Teil 1</span>
            </h2>
            <div class="minorCacheDetails Clear">
                <div id="ctl00_ContentBody_mcd1">
                    A cache by <a href="http://www.geocaching.com/profile/?guid=af08f081-faf4-4992-8268-1e16ab4677a9&wid=07270e8c-72ec-4821-8cb7-b01483f94cb5&ds=2">indianerjones, der merlyn,reflektordetektor</a>
                </div>
                <div id="ctl00_ContentBody_mcd2">
                    Hidden
                    :
                    2010-11-28
                    
                </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/stars5.gif" alt="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/stars3.gif" alt="3 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">
                                97 
                            </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=07270e8c-72ec-4821-8cb7-b01483f94cb5">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">

            

        </p>
        <p class="Warning NoBottomSpacing">This is a Premium Member Only cache.</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° 22.335 E 009° 44.122</span></strong>
                        </a>
                        <br />
                        <span id="ctl00_ContentBody_LocationSubPanel">
                            UTM: 32U E 550063 N 5802696<br />
                        </span>
                        <a id="ctl00_ContentBody_lnkConversions" title="Other Conversions" href="/wpt/?lat=52.37225&amp;lon=9.735367&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 392.3&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=07270e8c-72ec-4821-8cb7-b01483f94cb5" target="_blank">No Logs</a>
                        <a id="ctl00_ContentBody_lnkPrintFriendly5Logs" href="../seek/cdpf.aspx?guid=07270e8c-72ec-4821-8cb7-b01483f94cb5&amp;lc=5" target="_blank">5 Logs</a>
                        <a id="ctl00_ContentBody_lnkPrintFriendly10Logs" href="../seek/cdpf.aspx?guid=07270e8c-72ec-4821-8cb7-b01483f94cb5&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=48.861002,9.186577 (Home Location)&amp;daddr=52.37225,9.735367(Auf+den+Spuren+des+Indianer+Jones+Teil+1)" 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;07270e8c-72ec-4821-8cb7-b01483f94cb5&#39;);return false;" id="ctl00_ContentBody_btnSendToGPS" /><input type="submit" name="ctl00$ContentBody$btnSendToPhone" value="Send to My Phone" onclick="s2phone(&#39;GC2JVEH&#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">Aufgabe zum Start: Finde die Schattenlinie. !!!Die Skizze mit den Zahlen solltest du mitnehmen!!! Du solltest den cache so beginnen, das du station 2 in der Zeit von mo- fr von 11-19 Uhr und sa von 11-16 Uhr erledigt hast. Achtung: Damit ihr die Zahlenpause in druckbarer Größe sehen könnt müsst ihr über die Bildergalerie gehen nicht über den unten zu sehenden link.....
</span>
            
        </div>
        
        <br />
        <div class="UserSuppliedContent">
            
            <span id="ctl00_ContentBody_LongDescription"><img src="http://img.geocaching.com/cache/large/1711f8a1-796a-405b-82ba-8685f2e9f024.jpg" /></span>
            
        </div>
        
        <p>
            

        </p>
        <p id="ctl00_ContentBody_hints">
            <strong>
                Additional Hints</strong>
            (<a id="ctl00_ContentBody_lnkDH" title="Decrypt" onclick="return false;" href="../seek/#">No hints available.</a>) </p><div id="div_hint" class="span-8 WrapFix">
            </div><div id='dk' style="display: block;" class="span-9 last">
            <span id="ctl00_ContentBody_EncryptionKey" class="right"></span>
        </div>
        <div class="Clear">
        </div>
        
    </div>
    
    
    <div class="span-6 prepend-1 last">
        
        
<div class="CacheDetailNavigation NoPrint">
    
    <a href="/seek/log.aspx?ID=1997597&lcn=1" id="ctl00_ContentBody_GeoNav_logButton" class="Button LogVisit">Log your visit</a>
    <ul>
        <li><a href="/seek/gallery.aspx?guid=07270e8c-72ec-4821-8cb7-b01483f94cb5">View Gallery</a> (4)</li>
        <li><a href="/my/watchlist.aspx?w=1997597">Watch</a> (12)</li>
        <li><a href="/bookmarks/mark.aspx?guid=07270e8c-72ec-4821-8cb7-b01483f94cb5&amp;WptTypeID=8">Bookmark</a></li>
        <li><a href="/bookmarks/ignore.aspx?guid=07270e8c-72ec-4821-8cb7-b01483f94cb5&amp;WptTypeID=8">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/winter-yes.gif" alt="available in winter" title="available in winter" width="30" height="30" /> <img src="/images/attributes/flashlight-yes.gif" alt="flashlight required" title="flashlight required" width="30" height="30" /> <img src="/images/attributes/parking-yes.gif" alt="parking available" title="parking available" width="30" height="30" /> <img src="/images/attributes/stealth-yes.gif" alt="stealth required" title="stealth required" width="30" height="30" /> <img src="/images/attributes/hike_med-yes.gif" alt="hike between 1km-10km" title="hike between 1km-10km" width="30" height="30" /> <img src="/images/attributes/rappelling-yes.gif" alt="climbing gear" title="climbing gear" width="30" height="30" /> <img src="/images/attributes/AbandonedBuilding-yes.gif" alt="in abandoned structure" title="in abandoned structure" width="30" height="30" /> <img src="/images/attributes/attribute-blank.gif" alt="blank" title="blank" width="30" height="30" /> <img src="/images/attributes/attribute-blank.gif" alt="blank" title="blank" width="30" height="30" /> <img src="/images/attributes/attribute-blank.gif" alt="blank" title="blank" width="30" height="30" /> <img src="/images/attributes/attribute-blank.gif" alt="blank" title="blank" 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_0033fcee-df41-4675-8651-cefe70e47341').addService(googletag.pubads());
googletag.pubads().enableSingleRequest();
googletag.enableServices();
}});
</script>
<div id='div_0033fcee-df41-4675-8651-cefe70e47341'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div_0033fcee-df41-4675-8651-cefe70e47341'); });
</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">
        
        
                <ul>
            
                <li>
                    <a href="http://www.geocaching.com/track/details.aspx?guid=e32919d3-eb95-4d03-a6c4-d0adfff97865" class="lnk">
                        <img src="http://www.geocaching.com/images/wpttypes/sm/21.gif" width="16" /><span>Ichthyosaurus Humerus</span></a>
                </li>
            
                </ul>
            
            
            <div class="TopSpacing">
                <div id="ctl00_ContentBody_uxTravelBugList_uxTrackableItemsLinks">
	
                    <p class="NoBottomSpacing"><a id="ctl00_ContentBody_uxTravelBugList_uxViewAllTrackableItems" href="../track/search.aspx?wid=07270e8c-72ec-4821-8cb7-b01483f94cb5&amp;ccid=1997597">View all Trackables</a></p>
                
</div>
                <p class="NoBottomSpacing"><a id="ctl00_ContentBody_uxTravelBugList_uxTrackableItemsHistory" href="../track/search.aspx?wid=07270e8c-72ec-4821-8cb7-b01483f94cb5">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=760eb314-838d-4afc-aa5b-45b2212ee49c">T5 absolviert</a><br />by <a href="http://www.geocaching.com/profile/?guid=5c4b0915-5cec-4fa1-8afd-4b3ca67e004e">kai2707</a>
                </li>
            
                <li class='AlternatingRow'>
                    <a href="http://www.geocaching.com/bookmarks/view.aspx?guid=0a2e4b32-11cd-4e46-b52b-afa6bfc84dd2">ToDo</a><br />by <a href="http://www.geocaching.com/profile/?guid=822c0feb-4dd0-4318-9bdf-ea19764193a8">H.Waii</a>
                </li>
            
                <li class=''>
                    <a href="http://www.geocaching.com/bookmarks/view.aspx?guid=830162c2-72de-4876-bf22-244d59f8ba27">Diese sind noch fällig</a><br />by <a href="http://www.geocaching.com/profile/?guid=f3b9e609-633b-43af-9e34-1f8f54b86a9e">ceewee</a>
                </li>
            
                </ul>
            
        <p class="NoBottomSpacing">
            <a href="/bookmarks/default.aspx?guid=07270e8c-72ec-4821-8cb7-b01483f94cb5&WptTypeID=8" title="View all 9 bookmark lists...">View all 9 bookmark lists...</a>
        </p>
    </div>
</div>


        
        
    </div>
    
    
    <div id="ctl00_ContentBody_bottomSection" class="span-24 last">
        
        <p>
            &nbsp; <br />
            
            
        <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.37225&amp;lng=9.735367" 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=indianerjones">hidden</a> or <a href="/seek/nearest.aspx?ul=indianerjones">found</a> by this user
            </li>
            
                <li>
                    ...nearby <a href="/seek/nearest.aspx?tx=40861821-1835-4e11-b666-8d41064d03fe&lat=52.372250&lng=9.735367">caches of this type</a>, <a href="/seek/nearest.aspx?tx=40861821-1835-4e11-b666-8d41064d03fe&lat=52.372250&lng=9.735367&f=1">that I haven't found</a>
                </li>
                <li>
                    ...all nearby <a href="/seek/nearest.aspx?lat=52.372250&lng=9.735367">caches</a>, <a href="/seek/nearest.aspx?lat=52.372250&lng=9.735367&f=1">that I haven't found</a>
                </li>
                <li>
                    ...all nearby <a href="http://www.waymarking.com/directory.aspx?f=1&lat=52.372250&lon=9.735367">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.37225&lng=9.73537" target="_blank">Geocaching.com Map</a></li><li><a href="http://maps.google.com/maps?q=N+52%c2%b0+22.335+E+009%c2%b0+44.122+(GC2JVEH)+" target="_blank">Google Maps</a></li><li><a href="http://www.mapquest.com/maps/map.adp?searchtype=address&formtype=latlong&latlongtype=decimal&latitude=52.37225&longitude=9.73537&zoom=10" target="_blank">MapQuest</a></li><li><a href="http://maps.yahoo.com/#lat=52.37225&lon=9.73537&zoom=16&q=52.37225,9.73537&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.37225_9.73537_GC2JVEH" target="_blank">Bing Maps</a></li><li><a href="http://www.opencyclemap.org/?zoom=12&lat=52.37225&lon=9.73537" target="_blank">OpenCycleMap</a></li><li><a href="http://www.openstreetmap.org/?mlat=52.37225&mlon=9.73537&zoom=12" target="_blank">OpenStreetMap</a></li></span>
</ul>

        </span>
        <ul class="CachePageImages NoPrint">
            <li><a href="http://img.geocaching.com/cache/large/1711f8a1-796a-405b-82ba-8685f2e9f024.jpg" rel="lightbox">indy mit text netz Kopie</a></li><li><a href="http://img.geocaching.com/cache/large/62f39911-86ab-422c-8322-259d0f118848.jpg" rel="lightbox">Spoiler st.1</a></li><li><a href="http://img.geocaching.com/cache/large/b7c3df61-2403-4ce8-87be-41c54244116f.jpg" rel="lightbox">Zahlenpause</a></li>
        </ul>
        
            <div class="InformationWidget Clear">
                <h3>
                    195 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" /> 183&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="/images/logtypes/3.png" alt="Didn't find it" title="Didn't find it" /> 1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="/images/logtypes/4.png" alt="Write note" title="Write note" /> 7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="/images/logtypes/22.png" alt="Temporarily Disable Listing" title="Temporarily Disable Listing" /> 1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="/images/logtypes/23.png" alt="Enable Listing" title="Enable Listing" /> 1&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/46.png" alt="Owner Maintenance" title="Owner Maintenance" /> 1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p></span>
                <p class="HalfLeft">
                    <a id="ctl00_ContentBody_uxLogbookLink" href="../seek/cache_logbook.aspx?guid=07270e8c-72ec-4821-8cb7-b01483f94cb5">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=07270e8c-72ec-4821-8cb7-b01483f94cb5">View the Image Gallery of 4 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-31T10:40:47Z">03/31/2015 10:40:47 Pacific Daylight Time (17:40 GMT)</time><br/>Last Updated: <time class="timeago" datetime="2015-03-24T00:02:09Z">2015-03-24T00:02:09Z</time> on 03/23/2015 17:02:09 Pacific Daylight Time (00:02 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° 22.335' E 009° 44.122'"}};
mapLatLng = {"lat":52.37225,"lng":9.73537,"type":8,"name":"Auf den Spuren des Indianer Jones Teil 1"};
var ccConversions = [{"t":"Decimal","k":"DD","d":"WGS84","v":"52.372250, 009.735367"},{"t":"DDD MM SS.SSS","k":"DMS","d":"WGS84","v":"N 52° 22' 20.100\" E 009° 44' 07.321\""},{"t":"UTM","k":"UTM","d":"WGS84","v":"32U E 550063 N 5802696"}];
var dh=true;userInfo = {ID: 3409138};
userToken = 'ID5R2NBJDBPQYVKRP2QCKFMGOD72N345U34TRF3HIUOES7I3DEYZLGMWQENANSEL75TH743VWQXA4PRVBZVB2UFIVLT5HYFG73BJY737PC6AVOROLQCJBHWZ5WOPA4ZCUMZSO7RLBORYFW5XH4FZERAO4GV6P6EU7MMIJWQFCMKSWDLYPOETOG7C45IQCAL3KQH2HBW2ZEKNQEUZGEYPWMRCNR5G5ZK3DVSHQO3IXXDQGJ2DC6PA';
includeAvatars = false;
var lat=52.37225, lng=9.735367, guid='07270e8c-72ec-4821-8cb7-b01483f94cb5';
initalLogs = {"status":"success", "data": [{"LogID":485663443,"CacheID":1997597,"LogGuid":"af80ccaa-d904-41a0-9865-898c386870c8","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Schon ewig stand dieser Cache auf meiner ToDoListe und selbst der Start war schon entschlüsselt, besucht und die nötigen Informationen eingesammelt! Doch wo war nur dieser verdammte Zettel mit den wichtigen Info´s geblieben! Gestern also zusammen mit Senfhan nochmals zum Start- lag ja immerhin fast auf dem Weg! Heute dann zusammen auf´s Radl geschwungen und den weiteren Hinweisen gefolgt! Hier hatte Senfhan als gebürtiger Hannoveraner doch tatsächlich mal den richtigen Riecher, da meine Wenigkeit nicht ganz so ortskundig ist, wie er! Und schwuppdiwupp standen wir schneller als erwartet am Final und waren doch ein wenig enttäuscht, dass das Abenteuer so schnell vorbei war! Aber Teil zwei wird bald folgen...<br /><br />nizole","Created":"2015-03-23","Visited":"2015-03-18","UserName":"nizole","MembershipLevel":3,"AccountID":1471652,"AccountGuid":"d14f7e45-aff1-4fd4-b9c7-839c5019e042","Email":"","AvatarImage":"f3cfc3aa-76f2-4221-864a-72629d3d0b92.jpg","GeocacheFindCount":2631,"GeocacheHideCount":3,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":474047576,"CacheID":1997597,"LogGuid":"9b1b3f1b-ebb4-4080-9389-46d851154ce2","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Heute ging es mit dakar74, cumbaya und NWD auf die Spuren von Indianer Jones Die Stationen konnten gut gefunden und die gefundenen Hinweise schnell entschlüsselt werden, so das wir bereits nach ca. 1 Stunde überraschend am Final standen. Bei einem D5 hätte ich schon noch etwas mehr erwartet.<br /><br />Danke fürs legen und pflegen","Created":"2015-01-26","Visited":"2015-01-23","UserName":"jokar61","MembershipLevel":3,"AccountID":2827984,"AccountGuid":"b15acc18-7847-422d-b919-873770544d29","Email":"","AvatarImage":"9e7f655c-ce4a-4c87-a580-25f1f19f5102.jpg","GeocacheFindCount":1822,"GeocacheHideCount":6,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":474044973,"CacheID":1997597,"LogGuid":"6f6e1e3b-e80f-4860-9f67-3276c9bc0ce3","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Im Team mit Jokar61, Cumbaya und New World Disorder ging es heute auf , den Spuren von Indianer Jones zu folgen.<br />Der Start und die Stationen gingen gut von der Hand  und schon nach etwas über 1 Std. hielten wir das Logbuch in der Hand .<br /><br />Für die Ideen hinterlasse ich gern ein Fav. Punkt <br /><br />DfdC","Created":"2015-01-26","Visited":"2015-01-23","UserName":"dakar74","MembershipLevel":3,"AccountID":7742897,"AccountGuid":"8ab4e972-df93-45ba-94b9-550a47c0c3a1","Email":"","AvatarImage":"","GeocacheFindCount":1552,"GeocacheHideCount":1,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":473519970,"CacheID":1997597,"LogGuid":"bae55bad-b0db-4ad9-b9cb-a15b0dd68b56","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Heute sollte es im Team mit cumbaya, Jokar61 und Dakar74 losgehen um den Spuren des Indianer Jones zu folgen.<br />Wenn doch jede Schatzsuche so am schnürchen laufen, dann wären wir gemachte Leute <img src=\"/images/icons/icon_smile_big.gif\" border=\"0\" align=\"middle\" /><br />Gestern schnell das Listing überfolgen, sofort drängte sich die erste Idee für den Start in den Kopf. Schnell mal untereinander verglichen, passt so.<br />Heute dann auf zum Start. Da wir vlt. 5 Minuten zupät waren, hatten Dakar und Jokar Zeit sich alles schon einmal alleine anzuschauen. <br />Zeit die reichte das un ssofort bei der Ankuft eine passende Lösung präsentiert wurde die dann nur noch einmal kurz von allen auf plausiblität geprüft wurde.<br />ZS1 war schnell gefunden und der erste Blick auf die Hinweise verrit sofort was hier zu tun ist. Zielstrebig ging es zu ZS2. Während die eine Hälfte des Teams decodierte recherchierte die zweite Hälfte die mit den schon entschlüsselten Hinweisen so das die ZS3 nach kurzer Zeit enttarnt war.<br /><br />Wir waren sehr überrascht als wir hier dann schon das Final vorfanden.<br /><br />Die Art wie dieser Cache aufgebaut ist wirklich genial, das hat sehr gut gefallen. Wir hätten wirklich sehr gerne noch eine Hand voll Stationen in diesem Muste mehr abgearbeitet.<br />Vielleicht haben wir einfach Glück gehabt das wir immer gleich den riecher hatten, aber rückwirkend betrachtet ist sowohl D5, wie auch T3 hier etwas zu hoch angesiedelt.<br /><br />Eine Schleife lassen wir trotzdem da :)<br /><br />Date / Time : 23.01.2015 16:01:00<br />Count: 902<br />Day: Found  1 of 1 with 0 DNF<br /><br /><br />Danke für den Cache sagen<br /><br />Vincent Shezar & anima obscura<br /><br />New World Disorder<br />(Hin und wieder stehen wir auch mal als \"NWD\" im Logbuch, um Platz zu sparen, oder wenn es halt einfach mal schneller gehen muss)","Created":"2015-01-24","Visited":"2015-01-23","UserName":"New World Disorder","MembershipLevel":3,"AccountID":5412756,"AccountGuid":"ff83a8a9-95a6-4a3a-bff8-37ef16522000","Email":"","AvatarImage":"","GeocacheFindCount":969,"GeocacheHideCount":12,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":470444317,"CacheID":1997597,"LogGuid":"ba9a8f2e-7c62-44ab-9af3-c67b549655ae","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Diesen wollte ich mit dem Engel schon lange angehen, gestern war es dann soweit.Uns hatt alles gut gefallen. Im Dunkeln war es sogar ein bisschen gruselig. Vielen Dank dafür und ein Fav.","Created":"2015-01-05","Visited":"2015-01-04","UserName":"Engel und Fuchs","MembershipLevel":3,"AccountID":7794687,"AccountGuid":"8bf8cb9d-5fc7-4acc-b7a6-bda320b80875","Email":"","AvatarImage":"ac9cb33d-5c62-422f-9d6f-a77a7ca2f2da.jpg","GeocacheFindCount":2171,"GeocacheHideCount":16,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":470402389,"CacheID":1997597,"LogGuid":"b5398576-ba53-4ed5-b6d4-eef16b4cefda","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Zusammen mit dem Fuchs wurden heute mal ein paar bereits gelöste Mysteries abgearbeitet. Die Vorarbeit war schon erledigt, nur das Final fehlte noch. Aber auch das konnte sich trotz Dunkelheit in diesem sehr passenden Ambiente nicht ewig vor uns verstecken. <img src=\"/images/icons/icon_smile.gif\" border=\"0\" align=\"middle\" /><br />DFDC","Created":"2015-01-04","Visited":"2015-01-04","UserName":"Angel Ina","MembershipLevel":3,"AccountID":7515117,"AccountGuid":"45c7c989-cec4-4a7c-8676-a244357b543e","Email":"","AvatarImage":"500451a8-1863-4d5c-8743-2cfdf7d844cf.jpg","GeocacheFindCount":2001,"GeocacheHideCount":6,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":464874415,"CacheID":1997597,"LogGuid":"b3dfde97-6b38-4ce0-8086-32c94fd91351","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Am besten fanden wir hier den Start, zum Glück durch einen anderen Cache gewusst, wo die Schattenlinie zu finden ist. Die 1. Station haben wir dann nach einer Woche aufgesucht und konnten mit dem Hinweis vor Ort nicht so schnell etwas anfangen. Zu hause dann versucht es so zu lösen, bis endlich der Groschen viel und der nächste Ort aufgesucht wurde.<br />Wieder erst mal alles nur fotografiert und mit nach hause geschleppt.<br />Jetzt war es endlich soweit und wir konnten mit den ermittelten Sachen wieder starten.<br />War richtig unheimlich hier im Dunkeln, aber der Ort ist natürlich absolut perfekt. Schade, dass hier schon Schluß war! Von uns gibt es auf jeden Fall einen Favoritenpunkt, besonders für den Start.","Created":"2014-12-06","Visited":"2014-12-05","UserName":"flecki1","MembershipLevel":3,"AccountID":4110776,"AccountGuid":"31d92d97-022d-4238-8c2a-3c4fcf28d128","Email":"","AvatarImage":"480cfb25-3f69-494b-86b5-0212cb6e2b33.jpg","GeocacheFindCount":3804,"GeocacheHideCount":0,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":463546602,"CacheID":1997597,"LogGuid":"6a99474e-2e5c-4359-9554-b8805c9f7543","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Anfangs hatte ich nie eine Ahnung, was das mit der Schattenlinie soll.<br />Anfang des Jahres stand ich plötzlich davor und erinnerte mich an den Cache.<br />Also hab ich gebastelt, bis ich die nötige Info auf passender Größe hatte...<br />aber was ich damit soll, war noch nicht ganz klar.<br />Heute wollte ich es dann spontan mal probieren, war erst etwas shoppen und<br />bin dann mit Sack und Pack hier vorbei gegangen.<br />Eine Touri-Gruppe später konnte ich dann loslegen und Indis Spuren folgen.<br />Naja, okay, es hat einen Augenblick gedauert, aber die Idee kam mir beim Lauschen der Infos.<br /><br />Das konnte ich dann schnell erledigen... hops und weiter...<br />Mit den nächsten Infos konnte ich erst nix anfangen... TJ?... Ja... oder doch nicht...<br />plötzlich ging mir ein Licht auf... ich hatte da was Wichtiges übersehen.<br />Also Standort wechseln... hier war ich letztens doch schonmal... und es ergab sich ein Sinn.<br />Hier und da noch etwas pfeilen und schon stand der nächste Reisepunkt auf meinem Navi.<br /><br />Auweia... hier war es bereits dunkel und die Beschreibung großzügig...<br />hab ich eine Chance? Ich gehe es mal logisch und mit Instinkt an...<br />und schwups war das erste Objekt auch schon meins.<br />Ein gekonnter Griff und da war die nächste Station?!<br />Nein... es war sogar schon das Final... schade, es hätte gern noch etwas weiter gehen können.<br />Coole Umsetzung der Thematik und Integration in die Umgebung.<br />DFDC","Created":"2014-11-27","Visited":"2014-11-27","UserName":"doko23","MembershipLevel":3,"AccountID":2310316,"AccountGuid":"a3811f7d-5ed4-42e3-a041-85385b4afef7","Email":"","AvatarImage":"06805d08-c8db-4edb-8134-9aa4628cb85f.jpg","GeocacheFindCount":4740,"GeocacheHideCount":15,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":459146512,"CacheID":1997597,"LogGuid":"d0075662-160c-4489-9d9b-3851a1d78d5f","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Als der Bundescacheminister den Bonus von diesem Cache vorschlug, riefen Joersch und ich sofort ja. Da war nur eine noch eine Kleinigkeit zu erledigen... Achja, der Hauptcache. Den wollte ich schon eh lange gemacht haben, also los.<br />So machten wir uns auf die Spur von Station zu Station... Und freuten uns über nette kleine Rätsel, die wir gut im Team lösen konnten. Auch das letzte Hindernis konnte beseitigt werden und dann hielten wir die Dose in der Hand. Ganz ungefährlich ist es da zur Zeit nicht, mit den vielen Spritzen...<br /><br />Vielen Dank für die tollen Stationen und die Rätsel. Und danke natürlich auch an das Team. Es hat mal wieder Spaß gemacht. Daher verleihe ich gerne eine blaue Schleife :)","Created":"2014-11-04","Visited":"2014-11-01","UserName":"bountief","MembershipLevel":3,"AccountID":4581051,"AccountGuid":"7bb7e2da-c91b-48ec-8069-c1d12ff686c0","Email":"","AvatarImage":"c899db9a-00d3-499a-aa7d-fafdd5c14adc.jpg","GeocacheFindCount":1663,"GeocacheHideCount":3,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":458386976,"CacheID":1997597,"LogGuid":"9f14da78-b3eb-4776-862b-0cfb47f4083a","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Heute sollte es mal wieder ein T5 sein. Der Minister schlug den Bonus hiervon vor. Also müssen wir wohl erst mal hier ran. Also Lederpeitsche bunt Hut eingepackt und los gings! Ok, so schnell nicht, denn mich hielten am Vormittag noch andere Verpflichtungen auf. Somit ging es erst später als geplant los. Glücklicherweise reichte es noch und das Portal zur Station 2 war noch geöffnet. Bei ewiger Warterei auf auf ein koffeinhaltiges Heißgetränk hatten bountief und der Minister die Hinweise entschlüsselt und es ging weiter! Geschickt aufgeteilt wurde gesucht und bald hatte Schredder den richtigen Blick. Neben einer Menge Spritzen und anderem unappetitlichem Müll - konnte das Finale schnell gefunden werden. Auf ginge zum Bonus... Naja... fast... denn auch wir standen vor verschlossener Tür. Beim Bonus werden aktuell die Fledermäuse beschützt und bis Ende April wird das wohl nix... Vielleicht den Bonus so lange auch auf Schonzeit schicken... Vielen Dank für diesen Spaß und die sehr kreativen Stationen! So fühlt man sich wirklich wie Indiana Jones auf Expedition! Die blaue Schleife ist wohl verdient!","Created":"2014-11-02","Visited":"2014-11-01","UserName":"joersch","MembershipLevel":3,"AccountID":5251580,"AccountGuid":"7a53e877-213c-42a2-9e9b-313a2f8ff44f","Email":"","AvatarImage":"7f458db9-b8fd-4424-a42f-69f609bff6c7.jpg","GeocacheFindCount":1322,"GeocacheHideCount":0,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":450404223,"CacheID":1997597,"LogGuid":"082e3eee-d639-410f-85db-1416b0f8f210","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Endlich sollte auch dieser Cache mal angegangen werden.<br />Besonders die Station 2 hat uns sehr gefallen, so etwas hatten wir bisher noch nie.<br />Alles in allem ein wirklich nett gemachter Cache, die Position der Finaldose jedoch gefiel uns gar nicht und ist auch der Grund hier keinen Fav.-Punkt zu geben.<br /><br />Vielen Dank!<br /><br />Team-Lorenz<br />Found: 713","Created":"2014-10-04","Visited":"2014-10-02","UserName":"Team-Lorenz","MembershipLevel":3,"AccountID":7300097,"AccountGuid":"9f7baed6-52e0-4d17-bd1f-3162963107c4","Email":"","AvatarImage":"66dfbf44-8dd1-4677-8cbf-a17f2fb8d51b.jpg","GeocacheFindCount":792,"GeocacheHideCount":14,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":462939856,"CacheID":1997597,"LogGuid":"74bea742-8b93-4553-bf9c-e4cdf1320735","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Das war mal echt was anderes. Die Örtlichkeiten und Rätsel haben mir so richtig gefallen, die Umstände um das Final jedoch nicht… passt auch eure Hände auf beim Suchen. So schwierig war es insgesamt dann doch nicht und so ging die ganze Runde gefühlt viel zu schnell vorbei.<br />Danke für die etwas andere Stadtführung, echt empfehlenswert <img src=\"/images/icons/icon_smile_big.gif\" border=\"0\" align=\"middle\" /><br /><br />littlefooty<br />","Created":"2014-11-23","Visited":"2014-09-29","UserName":"littlefooty","MembershipLevel":3,"AccountID":1996219,"AccountGuid":"049551c8-cdb6-4444-aa32-28431de8d056","Email":"","AvatarImage":"","GeocacheFindCount":462,"GeocacheHideCount":0,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":445549767,"CacheID":1997597,"LogGuid":"c8019187-e03b-44c0-896a-80bf7b0e0ab9","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Die Schattenlinie war mir schon lange bekannt, aber für das Abenteuer auf den Spuren von Henry Jones Junior hatte sich bis heute keine Gelegenheit ergeben. Nun war es endlich soweit und zusammen mit Clumsysheep konnten alle Stationen gut gefunden und relativ schnell gefunden werden. Die ganze Zeit fühlten wir uns, als seien wir wirklich in einem Indi-Abenteuer unterwegs, wobei ich froh war, dass ich nicht auch noch vorbeizischenden Kugeln und Explosionen ausweichen musste.<br /><br />Am Ende konnten wir die Welt retten und waren fast etwas enttäuscht, dass wir schon fertig waren.<br /><br />Vielen Dank für diesen außergewöhlichen Cache, den ich nur weiterempfehlen kann. Daher gibt es natürlich einen Favoritenpunkt.","Created":"2014-09-15","Visited":"2014-09-13","UserName":"CeKa82","MembershipLevel":3,"AccountID":4940226,"AccountGuid":"3d26d0b9-e0e3-4c2f-b6d3-7197de753557","Email":"","AvatarImage":"f0f3f858-afdb-4547-9599-4befc8304386.jpg","GeocacheFindCount":2661,"GeocacheHideCount":6,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":442726979,"CacheID":1997597,"LogGuid":"81aa275d-6eb9-4f65-aff6-61b6eb7ff75d","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Zum Abschluss unseres Urlaubs stand dieser für heute auf dem Programm. Und was sollen wir sagen, von Beginn bis zum Eintrag ins Loggbuch haben wir uns in allen Belangen wie Indie gefühlt! Tolle Ideen, klasse Locations, schöne Knobeleien ! Da fehlten uns nur noch Lederhut und Peitsche... Gern mehr davon ! Den Fav. Haben wir gern dagelassen . DFDC!","Created":"2014-09-06","Visited":"2014-09-04","UserName":"Finde-Füchse","MembershipLevel":3,"AccountID":4068210,"AccountGuid":"0a52ce31-32d6-423d-847f-2f3d20ac5d67","Email":"","AvatarImage":"40f5cd25-b21b-4551-850a-d0cc24a70074.jpg","GeocacheFindCount":3169,"GeocacheHideCount":4,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":442257862,"CacheID":1997597,"LogGuid":"e4e3c30f-cf80-4d5a-956b-52238c69ea9d","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Wo die Schattenlinie zu finden sei, dass wussten wir schon lange, aber erst vor genau einem Monat kamen wir dazu, hier die Spur von Indianer Jones aufzunehmen. Aufgrund der Riesensause am Maschsee fanden wir nach der Weiterfahrt keinen passenden Abstellplatz für unser Expeditionsmobil und besuchten die nächste Station später, und da es ein Sonntag war, mussten wir eine weitere Pause einlegen. Heute recherchierten wir im angegebenen Zeitfenster und waren schnell wieder auf Kurs. Allerdings kam das Ende dann doch überraschender als gedacht ...<br /><br />Vielen Dank für den Cache!","Created":"2014-09-04","Visited":"2014-09-03","UserName":"2bupa","MembershipLevel":3,"AccountID":2675170,"AccountGuid":"e6a84779-ad63-4ba1-93fa-558a7190c8b4","Email":"","AvatarImage":"e30c21ec-8bce-4b90-9c6f-ee7e618da9fe.jpg","GeocacheFindCount":8744,"GeocacheHideCount":15,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":441250609,"CacheID":1997597,"LogGuid":"f73efee7-aabf-4cc1-9dab-eea4e349d983","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Irgendwie wirkte das Wetter heute nicht allzu vertrauenswürdig und so entschieden wir uns, statt einer Runde durch den Wald lieber durch die große Stadt zu laufen. <br /><br />Das Gleiche hatten wir letzte Woche auch schon getan und uns dabei an diesen Cache versucht. Nur zum Ende kamen wir nicht, es war dann einfach zu muggelig. Heute aber hatten wir mehr Glück, es war etwas ruhiger und wir konnten unser treiben etwas besser tarnen. <br /><br />So also geht ein wirklich toller Cache zu Ende, den wir so ganz ohne Hilfe wohl nicht geschafft hätten. Danke also an den Helfer ein fettes Danke mit blauer Schleife an den Owner!<br /><br />Bandit mit Colt<br /><br />This entry was edited by Bandit mit Colt on Wednesday, 10 September 2014 at 10:51:20 UTC.","Created":"2014-08-31","Visited":"2014-09-01","UserName":"Bandit mit Colt","MembershipLevel":3,"AccountID":5821212,"AccountGuid":"851cacb6-219d-477f-a64c-5ff51a337add","Email":"","AvatarImage":"7e2f9f3b-7f52-4819-ad99-7e9527bc430f.jpg","GeocacheFindCount":8046,"GeocacheHideCount":5,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":440401444,"CacheID":1997597,"LogGuid":"a18c32fc-5e55-462a-9ebb-f399dd5360c8","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Letzte Woche waren wir zufällig in Hannover und entschlossen uns spontan zu diesem Cache. Doch ohne Vorbereitung konnten wir nicht mal richtig starten. Allerdings lies uns das Listing nicht los und so begaben wir uns heute auf die Spur von Indiana Jones. Ohne zu Spoilern kann man leider kaum was schreiben... Dieser Cache ist wirklich der Hammer! Ein großes Lob an den Owner für diese Ideen und die Pflege. Wenn wir könnten, würden wir gleich mehrere Favoritenpunkte geben :-)","Created":"2014-08-29","Visited":"2014-08-29","UserName":"Traumsand","MembershipLevel":3,"AccountID":5557497,"AccountGuid":"b685432c-97ff-49ce-a63c-3019e78c55f5","Email":"","AvatarImage":"9f727299-67ba-4221-ac78-dbb9dcebe98d.jpg","GeocacheFindCount":885,"GeocacheHideCount":0,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":434908333,"CacheID":1997597,"LogGuid":"fee322ec-e816-45aa-b492-b64d9d729d48","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Mit Hasenkeule und HWaii sind wir gemeinsam als Assistenten dem Indi gefolgt.<br />\r\nDas ist schon eine sehr schöne Kombination, mit minimalen Koordinatenangaben,<br />\r\ninteressante Orte in Hannover zu erkunden.<br />\r\nDie Idee mit der zeitbeschränkten Station ist genial.<br />\r\n<br />\r\nDer Bonus folgt... <img src=\"/images/icons/icon_smile_cool.gif\" border=\"0\" align=\"middle\" /><br />\r\n<br />\r\nVielen Dank für die versteckten , aber trotzdem öffentlichen Orte.<br />\r\n<br />\r\n<font color=\"blue\">ThomasAnderson<br />\r\n<br /></font>","Created":"2014-08-14","Visited":"2014-08-14","UserName":"ThomasAnderson","MembershipLevel":3,"AccountID":2280425,"AccountGuid":"47e2beb3-4a3d-4a8c-ba69-81d89560874c","Email":"","AvatarImage":"17cbfad4-4bbe-4c29-94b2-660b79ea51c6.jpg","GeocacheFindCount":939,"GeocacheHideCount":9,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":434846526,"CacheID":1997597,"LogGuid":"5e6d9c07-c7e7-4481-adf9-9342ce10c8e6","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"ThomasAnderson hat mich und H.Waii auf diesen Cache aufmerksam gemacht. Die gemeinsame Abarbeitung zog sich aber dann, weil die Stationen quasi einzeln abgearbeitet worden sind und Hannover Innenstadt nun doch nicht um die Ecke liegt.<br /><br />Schön gemachte Rätsel, die dem Indiana Jones-Geist gut Rechnung tragen. Insbesondere die Station mit der zeitlichen Beschränkung hat mir gefallen <img src=\"/images/icons/icon_smile_cool.gif\" border=\"0\" align=\"middle\" />. Ich war fast enttäuscht als ich die Final-Dose in den Händen hielt und keine weitere Aufgabe wartete...<br /><br />Danke für diese klasse Rätseljagd!!","Created":"2014-08-14","Visited":"2014-08-13","UserName":"Hasenkeule","MembershipLevel":3,"AccountID":4378965,"AccountGuid":"90af3caf-4b11-437c-b444-177a8f8fe099","Email":"","AvatarImage":"e94c7baf-0128-4e2e-b0a9-5c397548ac07.jpg","GeocacheFindCount":1842,"GeocacheHideCount":10,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":432346355,"CacheID":1997597,"LogGuid":"e119f3f4-a0b0-47cd-9cda-76b6750a9922","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Owner Maintenance","LogTypeImage":"46.png","LogText":"Mal nach den Stationen gesehen und Zettel aufgefüllt<br />Alles bestens<br />Viel Spass wünscht<br />Indi","Created":"2014-08-07","Visited":"2014-08-07","UserName":"indianerjones","MembershipLevel":3,"AccountID":678630,"AccountGuid":"af08f081-faf4-4992-8268-1e16ab4677a9","Email":"","AvatarImage":"3e670f19-793f-49d6-8832-564c4c886396.jpg","GeocacheFindCount":1061,"GeocacheHideCount":25,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":405505458,"CacheID":1997597,"LogGuid":"0a514baf-0f47-4471-b093-54ec183f6d9b","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Seinerzeit - zu Publishzeiten - waren wir noch so frisch im Geschäft, dass ein Cache mit dieser D/T-Wertung unerreichbar schien.<br />Inzwischen hat sich die Lage ja nun etwas geändert... Und als ich vor zwei Tagen am Start vorbei kam... denn wo der war, das war ja von Anfang an klar... Packte es mich dann. Also an drei Aufeinaderfolgenden Tagen die Stationen absolviert und vorhin glücklich geloggt.<br />Zwischendurch noch meine Großeltern besucht <img src=\"/images/icons/icon_smile_wink.gif\" border=\"0\" align=\"middle\" /> und an eine alte Stätte häufigen Aufenthalts zurückgekehrt. In die Anna Jooons....<br />Das war ne coole Tour!!<br /><br />TFTC sagt Mrs CMF<br /><br />IN:Fav","Created":"2014-05-08","Visited":"2014-05-08","UserName":"cookiemonsterfamily","MembershipLevel":3,"AccountID":2572906,"AccountGuid":"ec7c2430-4552-48d2-85f0-f031b8221c6a","Email":"","AvatarImage":"0822021c-d0e7-4eed-b32e-65457e8a8e78.jpg","GeocacheFindCount":7277,"GeocacheHideCount":28,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":402346295,"CacheID":1997597,"LogGuid":"bdea9c54-6610-43fc-995d-f302624eb1be","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Auf den Start schaue ich jeden Morgen aus dem Büro. Also vor längerer Zeit diesen Mysrery begonnen, aber immer wieder unterbrechen müssen. Mal fehlte das Team, mal  waren die Zeiten unpassend. Heute nach einem kleinen Tipp diesen Cache beenden können. Wie auch die Vorlogger schon schrieben\"...leider schon vorbei....\". Dieser Cache war wirklich abenteuerlich und hat riesen Spass gemacht. Der Bonus ist als 200ster T5er geplant.<br /><br />Danke an den Owner für dieses außergewöhnliche Abenteuer und wir freuen uns schon auf die Fortsetzung<br /><br />DFDC sagen Charly.Maggy","Created":"2014-04-28","Visited":"2014-04-28","UserName":"Charly.Maggy","MembershipLevel":3,"AccountID":5286726,"AccountGuid":"bb95d7c1-7f17-4c30-83c7-b1914bfb888f","Email":"","AvatarImage":"cc557fd5-70a8-4136-8a59-e2318f2098f0.jpg","GeocacheFindCount":5948,"GeocacheHideCount":12,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":401181120,"CacheID":1997597,"LogGuid":"17ed5583-3c2b-4e37-9425-20e68140a742","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Schade, schon zu Ende <img src=\"/images/icons/icon_smile_dissapprove.gif\" border=\"0\" align=\"middle\" /><br /><br />Ich hätte gerne noch mehr Stationen von diesem Oberhammer gemacht.<br /><br />Alle Aufgaben und Stationen waren komplett stimmig zum Thema gestaltet. Wie andere auch schon geschrieben haben: da kommt Indianer Jones Feeling auf !<br /><br />Danke für diese tolle Reise mit anspruchsvollen Aufgaben, schicken Stationen und mega coolem Final. Dafür gibts natürlich ein Schleifchen und TFTC!","Created":"2014-04-25","Visited":"2014-04-25","UserName":"bube96","MembershipLevel":3,"AccountID":3930932,"AccountGuid":"fe928135-8705-44b4-859d-06e9bcff4f63","Email":"","AvatarImage":"19f1dea5-03ec-4983-9f2b-ee7aa562883c.png","GeocacheFindCount":1637,"GeocacheHideCount":1,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":393730913,"CacheID":1997597,"LogGuid":"450624e5-8c1a-422b-b815-694cab36a110","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"OMG hat es ja schon ganz gut beschrieben. Nur: bei drei Cachern und zweimal Parken mit Gebühr, geht einer leer aus. Aber da wir sicher die Reihe weitermachen werden, wird es schon noch Gelegenheiten für mich geben, mein Geld in kleine Schlitze zu stecken.<br />Nach den leichten Startschwierigkeiten lief es dann wirklich gut. Das Wissen der einzelnen Teammitglieder fügte sich nahtlos zu einer Gesamtlösung zusammen. <br />Vielen Dank fürs Legen!<br />TFTC, Teletron (auf Tour mit sthl und OMG)<br /><br />PS: wo ist denn nur dieses blaue Schleifchen geblieben? Ach, hier.","Created":"2014-04-03","Visited":"2014-04-03","UserName":"Teletron","MembershipLevel":3,"AccountID":2480420,"AccountGuid":"1f222ea5-12e8-4def-86fe-5fbe2c8af2f4","Email":"","AvatarImage":"d03fd2b2-d2ec-4436-ad5a-712b3b154973.jpg","GeocacheFindCount":1602,"GeocacheHideCount":2,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]},{"LogID":393600249,"CacheID":1997597,"LogGuid":"5dac1383-e550-4ef2-8f3d-d73c88bcd4cf","Latitude":null,"Longitude":null,"LatLonString":"","LogType":"Found it","LogTypeImage":"2.png","LogText":"Was schreibt man hier am besten? Ich probieren es einfach mal...<br />Wir haben auf dieser Runde Sachen gesehen die für uns alle komplett neu waren. Am Start hatten wir Tomaten auf den Augen, zugegeben. Aber danach lief es, IMHO, recht flüssig. Alle Teammitglieder haben sich in die Lösungen und Parkgebühren geteilt,... fast ;-) <br />Mir persönlich hat die Prefinalstation am Besten gefallen. Der Oberhammer!<br />Aber auch der größte Spaß ist irgendwann vorbei und so standen wir mit verstörten Gesichtern am Final: \"Wie? Das war's schon?\" Leider.<br /><br />Ich freu mich schon auf die nächsten Herausforderungen im bewährten Team.<br /><br />TFTC OldManGrimm<br /><br />PS: Da ich mich ein wenig wie Indian(er/a) fühlen konnte bleibt ein Favo beim Prefinal...<br /><br />This entry was edited by OldManGrimm on Thursday, 03 April 2014 at 06:14:13 UTC.","Created":"2014-04-02","Visited":"2014-04-02","UserName":"OldManGrimm","MembershipLevel":3,"AccountID":389591,"AccountGuid":"95126b00-d716-4db8-a181-ff08dc31b03f","Email":"","AvatarImage":"47ccdb3d-bc92-4ff1-a853-c0f055d5c467.jpg","GeocacheFindCount":818,"GeocacheHideCount":4,"ChallengesCompleted":0,"IsEncoded":false,"creator":{"GroupTitle":"Premium Member","GroupImageUrl":"/images/icons/prem_user.gif"},"Images":[]}], "pageInfo": { "idx":1, "size": 25, "totalRows": 195, "rows": 195 } };
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', 3409138, 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: WEB07; Build: Tucson.Main.release-20150330.1.Release_270 
 -->
</body>
</html>