-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoutput.html
7088 lines (6393 loc) · 456 KB
/
output.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>VRS: Fahrplanauskunft</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-15">
<meta name="generator" content="TYPO3 4.5 CMS">
<meta name="keywords" content="Fahrplanauskunft, Fahrplan, Infocenter, News, Events, Sonderfahrplan, Sonderz&uuml;ge, VRS">
<meta name="description" content="Struktur, Gebietskarte, Verkehrsunternehmen, Fahrplanauskunft, Tickets und Tarife im Verkehrsverbund Rhein-Sieg / mit Infos zu Kooperationspartnern und Projekten">
<meta name="robots" content="INDEX,FOLLOW">
<meta name="language" content="de">
<meta name="author" content="Verkehrsverbund Rhein-Sieg GmbH">
<meta name="revisit-after" content="1 month">
<meta name="abstract" content="Struktur, Gebietskarte, Verkehrsunternehmen, Fahrplanauskunft, Tickets und Tarife im Verkehrsverbund Rhein-Sieg / mit Infos zu Kooperationspartnern und Projekten">
<meta name="category1" content="SearchCrit1">
<link rel="stylesheet" type="text/css" href="http://www.vrsinfo.de/typo3temp/stylesheet_b7a642d8be.css?1358328354" media="all">
<link rel="stylesheet" type="text/css" href="http://www.vrsinfo.de/fileadmin/templates/css_2012/my_layout-neu.css?1310987329" media="all">
<link rel="stylesheet" type="text/css" href="http://www.vrsinfo.de/fileadmin/templates/css_2012/screen-neu/main_layout.css?1358767328" media="all">
<link rel="stylesheet" type="text/css" href="http://www.vrsinfo.de/fileadmin/templates/css_2012/print/print.css?1278320034" media="print">
<style type="text/css">#main_content { font-size: 12px; }</style>
<script language="javascript" type="text/javascript" src="/vrs/common/script/ivvToolbox.js"></script>
<script language="javascript" type="text/javascript" src="/vrs/common/script/ivvEvents.js"></script>
<script language="javascript" type="text/javascript" src="/vrs/common/script/ivvRenderer.js"></script>
<script language="javascript" type="text/javascript" src="/vrs/common/script/ivvMapLayerTiles.js"></script>
<script language="javascript" type="text/javascript" src="/vrs/common/script/ivvMapLayerRoutes.js"></script>
<script language="javascript" type="text/javascript" src="/vrs/common/script/ivvMapLayerSymbols.js"></script>
<script language="javascript" type="text/javascript" src="/vrs/common/script/ivvMapLayerSymbolsASS.js"></script>
<script language="javascript" type="text/javascript" src="/vrs/common/script/ivvMapLayerASS.js"></script>
<script language="javascript" type="text/javascript" src="/vrs/common/script/ivvMap.js"></script>
<script language="javascript" type="text/javascript" src="/vrs/common/script/ivvMapControlMouse.js"></script>
<script language="javascript" type="text/javascript" src="/vrs/common/script/ivvMapHistory.js"></script>
<script language="javascript" type="text/javascript" src="/vrs/common/script/assMap.js"></script>
<script language="javascript" type="text/javascript">
function showInfoPOI(nr,category)
{
var url=toolbox.encodeURLSafe("http://212.66.132.219/Sehenswuerdigkeiten_vrs_02.asp?dbspalte="+nr);
var info=window.open(url,"Informationen","width=625,height=300,resizable,scrollbars=1");
info.focus();
}
var mapMCMCJAJA=null;
function initializeMCMCJAJA()
{
if ((document.getElementById("DIV_MAP_WINDOW_MCMCJAJA")!=null) &&
(document.getElementById("BUTTON_SLIDER_ZOOM_MCMCJAJA")!=null) &&
(document.getElementById("DIV_SLIDER_MCMCJAJA")!=null))
{
mapMCMCJAJA=new ASSMap('MCMCJAJA');
//mapMCMCJAJA.layerMap=new MapLayerTiles("Karte","http://mapservice.ivv-aachen.de/mapASS/",276450.0,5569887.0,535322.0,5828756.0,0.00244140625,1.25,256);
mapMCMCJAJA.layerMap=new MapLayerTiles("Karte","http://mapservice.ivv-aachen.de/mapASS/",276450.0,5523887.0,535322.0,5828756.0,0.00244140625,1.25,256);
mapMCMCJAJA.addLayer(mapMCMCJAJA.layerMap);
mapMCMCJAJA.layerMap.setOpacity(0.9);
mapMCMCJAJA.layerASS=new MapLayerASS("/vrs/cgi/service/map","ASS");
mapMCMCJAJA.addLayer(mapMCMCJAJA.layerASS);
mapMCMCJAJA.layerRouten=new MapLayerRoutes("Routen");
mapMCMCJAJA.addLayer(mapMCMCJAJA.layerRouten);
mapMCMCJAJA.hideLayer("Routen");
mapMCMCJAJA.layerSymbols=new MapLayerSymbolsASS("Symbole");
mapMCMCJAJA.addLayer(mapMCMCJAJA.layerSymbols);
mapMCMCJAJA.layerSymbols.setSymbolHighlightStartZielVia("/vrs/images/highlightFlag.png",9,30);
mapMCMCJAJA.layerSymbols.setSymbolHighlightRoute("/vrs/images/highlightRoute.png",5,6);
mapMCMCJAJA.layerSymbols.setSymbolStart("/vrs/images/Start.png",1,22);
mapMCMCJAJA.layerSymbols.setSymbolZiel("/vrs/images/Ziel.png",1,22);
mapMCMCJAJA.layerSymbols.setSymbolVia("/vrs/images/Via.png",1,22);
mapMCMCJAJA.layerSymbols.setSymbolUmstieg("/vrs/images/Umstieg_38.png",11,38);
mapMCMCJAJA.state=1;
}
else window.setTimeout("initializeMCMCJAJA();",500);
}
</script>
<script language="javascript" type="text/javascript" src="/vrs/common/script/ivvXML.js"></script>
<script language="javascript" type="text/javascript" src="/vrs/common/script/ivvAJAX.js"></script>
<script language="javascript" type="text/javascript" src="/vrs/common/script/assAusgabeRouteFahrtKarte.js"></script>
<script language="javascript" type="text/javascript">
var ausgabeRouteFahrtKarte5=null;
function initializeKNCDEHNB()
{
var map;
if ((typeof(mapMCMCJAJA)!='undefined') && ((map=mapMCMCJAJA)!=null) && (map.state==1))
{
ausgabeRouteFahrtKarte5=new AusgabeRouteFahrtKarte("/vrs/cgi/service/objects",0.078125,'MCMCJAJA',map,'<Map><Start>350554,5649304</Start><Ziel>365601,5649131</Ziel><BBox>350554,5646741,365601,5649451</BBox><Segments><SegmentPublicTransport><Description><![CDATA[127 -> Ebertplatz]]></Description><Shape srsName="urn:adv:crs:ETRS89_UTM32">350554,5649304 350555,5649353 350588,5649349 350595,5649349 350606,5649349 350635,5649347 350655,5649347 350677,5649344 350751,5649338 350783,5649336 350799,5649335 350826,5649332 350855,5649331 350880,5649332 350899,5649332 350925,5649333 350957,5649334 350991,5649337 351054,5649348 351068,5649351 351094,5649354 351114,5649361 351148,5649368 351187,5649375 351212,5649381 351246,5649388 351257,5649390 351261,5649391 351274,5649395 351302,5649399 351311,5649402 351328,5649403 351363,5649408 351391,5649414 351466,5649421 351491,5649423 351516,5649427 351556,5649431 351585,5649434 351610,5649435 351635,5649437 351663,5649438 351784,5649447 351817,5649446 351847,5649447 351875,5649448 351901,5649449 351924,5649449 351945,5649450 351945,5649449 351945,5649450 351961,5649451 351983,5649451 352009,5649451 352038,5649450 352071,5649450 352105,5649449 352139,5649448 352173,5649447 352206,5649446 352294,5649444 352356,5649441 352402,5649439 352381,5649440 352458,5649438 352496,5649438 352519,5649438 352542,5649437 352565,5649436 352596,5649435 352619,5649434 352640,5649433 352658,5649430 352674,5649429 352687,5649428 352698,5649426 352701,5649426 352703,5649426 352706,5649426 352753,5649419 352763,5649416 352774,5649413 352785,5649411 352796,5649407 352806,5649405 352813,5649402 352820,5649399 352827,5649397 352837,5649394 352830,5649362 352834,5649361 352844,5649358 352863,5649355 352895,5649347 352894,5649347 352895,5649347 352910,5649346 352913,5649346 352916,5649349 352919,5649354 352921,5649367 353003,5649343 353020,5649337 353037,5649331 353053,5649324 353067,5649316 353082,5649311 353095,5649302 353108,5649293 353121,5649286 353145,5649269 353155,5649261 353165,5649251 353202,5649207 353208,5649200 353224,5649182 353271,5649127 353279,5649117 353316,5649074 353344,5649042 353551,5648799 353555,5648794 353614,5648727 353620,5648714 353631,5648698 353701,5648614 353755,5648551 353770,5648533 353774,5648530 353779,5648527 353783,5648524 353786,5648521 353791,5648517 353796,5648515 353814,5648524 353835,5648542 353840,5648545 353871,5648570 353873,5648571 353876,5648574 353885,5648582 353890,5648586 353898,5648591 353904,5648596 353908,5648600 353917,5648606 353950,5648633 353975,5648661 354012,5648705 354027,5648722 354038,5648735 354047,5648750 354054,5648761 354062,5648771 354069,5648784 354077,5648797 354094,5648827 354115,5648866 354119,5648874 354122,5648887 354135,5648873 354168,5648836 354200,5648803 354297,5648865 354299,5648865 354345,5648895 354346,5648896 354402,5648931 354425,5648893 354446,5648865 354473,5648828 354494,5648800 354503,5648789 354510,5648777 354518,5648767 354524,5648755 354530,5648747 354535,5648736 354553,5648657 354554,5648652 354554,5648650 354554,5648648 354553,5648646 354551,5648644 354550,5648642 354490,5648592 354441,5648554 354421,5648539 354442,5648505 354477,5648445 354492,5648422 354500,5648406 354507,5648410 354512,5648412 354519,5648414 354525,5648415 354531,5648416 354538,5648416 354613,5648406 354626,5648405 354638,5648405 354651,5648405 354663,5648405 354675,5648405 354687,5648406 354715,5648409 354749,5648413 354751,5648414 354796,5648421 354810,5648422 354866,5648424 354891,5648423 354918,5648422 354964,5648418 355085,5648407 355095,5648404 355096,5648404 355105,5648402 355152,5648399 355164,5648399 355174,5648400 355183,5648399 355192,5648401 355199,5648401 355208,5648402 355224,5648408 355238,5648414 355252,5648422 355266,5648427 355279,5648434 355291,5648440 355301,5648449 355309,5648458 355321,5648440 355331,5648421 355342,5648401 355351,5648381 355359,5648360 355367,5648340 355350,5648383 355448,5648339</Shape><Product>Bus</Product></SegmentPublicTransport><SegmentPublicTransport><Description><![CDATA[13 -> Holweide Vischeringstr.]]></Description><Shape srsName="urn:adv:crs:ETRS89_UTM32">355448,5648339 355519,5648357 355541,5648367 355549,5648372 355555,5648376 355560,5648384 355570,5648397 355579,5648417 355588,5648435 355601,5648476 355606,5648493 355612,5648509 355621,5648528 355629,5648543 355641,5648564 355657,5648584 355675,5648605 355691,5648620 355703,5648633 355716,5648642 355735,5648654 355750,5648663 355777,5648678 355789,5648681 355801,5648685 355815,5648691 355834,5648696 355856,5648698 355889,5648703 355920,5648707 355959,5648711 355979,5648713 356003,5648718 356031,5648723 356051,5648726 356072,5648729 356098,5648734 356170,5648746 356196,5648750 356239,5648756 356263,5648758 356284,5648758 356315,5648755 356342,5648749 356372,5648739 356389,5648734 356414,5648723 356420,5648719 356437,5648712 356455,5648704 356476,5648693 356500,5648684 356528,5648674 356558,5648669 356584,5648663 356610,5648659 356633,5648656 356694,5648649 356738,5648646 356793,5648640 356820,5648637 356843,5648634 356872,5648628 356895,5648620 356920,5648612 357014,5648583 357036,5648574 357089,5648561 357108,5648558 357120,5648555 357151,5648551 357176,5648550 357297,5648549 357374,5648548 357411,5648547 357410,5648547 357411,5648547 357423,5648547 357429,5648546 357515,5648546 357640,5648542 357713,5648540 357768,5648537 357841,5648530 357865,5648526 357969,5648506 358001,5648502 358007,5648501 358016,5648500 358023,5648498 358045,5648495 358141,5648479 358241,5648461 358252,5648458 358328,5648447 358453,5648427 358521,5648416 358556,5648408 358572,5648402 358580,5648399 358621,5648378 358644,5648361 358664,5648343 358688,5648314 358723,5648248 358730,5648221 358734,5648193 358733,5648138 358730,5648122 358726,5648092 358726,5648085 358726,5648061 358727,5648059 358731,5648045 358733,5648040 358733,5648038 358742,5648022 358751,5648011 358759,5648005 358769,5647997 358783,5647991 358793,5647988 358835,5647973 358850,5647968 358866,5647963 358875,5647957 358905,5647943 358925,5647931 358927,5647931 359093,5647843 359106,5647835 359116,5647833 359266,5647753 359377,5647696 359453,5647654 359461,5647652 359492,5647634 359509,5647627 359530,5647616 359534,5647614 359548,5647608 359584,5647588 359605,5647580 359662,5647554 359667,5647549 359674,5647547 359704,5647533 359759,5647508 359793,5647495 359807,5647490 359825,5647485 359829,5647483 359835,5647479 359850,5647479 359897,5647453 359911,5647444 359939,5647427 359973,5647399 360052,5647305 360086,5647265 360100,5647248 360130,5647210 360160,5647178 360179,5647156 360227,5647102 360239,5647085 360286,5647030 360328,5646979 360337,5646973 360348,5646970 360363,5646960 360518,5647080 360363,5646960 360366,5646958 360392,5646947 360405,5646940 360409,5646938 360420,5646932 360424,5646930 360430,5646926 360434,5646925 360441,5646922 360467,5646908 360482,5646900 360484,5646899 360490,5646898 360501,5646889 360504,5646888 360514,5646883 360563,5646851 360581,5646838 360605,5646819 360637,5646797 360663,5646784 360691,5646770 360722,5646759 360748,5646753 360767,5646750 360778,5646749 360821,5646745 360853,5646743 360870,5646742 360903,5646741 360928,5646744 360963,5646752 360987,5646762 361015,5646777 361041,5646797 361092,5646833 361230,5646942 361289,5646996 361329,5647056</Shape><Product>LightRail</Product></SegmentPublicTransport><SegmentPublicTransport><Description><![CDATA[3 -> Thielenbruch]]></Description><Shape srsName="urn:adv:crs:ETRS89_UTM32">361329,5647056 361354,5647051 361384,5647076 361427,5647110 361452,5647132 361464,5647141 361519,5647188 361590,5647246 361656,5647295 361683,5647318 361702,5647338 361716,5647352 361739,5647376 361748,5647390 361754,5647396 361774,5647428 361804,5647481 361820,5647516 361831,5647537 361843,5647562 361847,5647577 361854,5647585 361865,5647610 361874,5647632 361889,5647659 361897,5647668 361898,5647671 361917,5647694 361942,5647718 361963,5647732 362105,5647815 362129,5647830 362157,5647852 362180,5647876 362200,5647894 362204,5647896 362232,5647917 362264,5647940 362282,5647956 362311,5647976 362341,5647996 362362,5648007 362389,5648018 362406,5648027 362435,5648033 362543,5648050 362701,5648069 362749,5648075 362800,5648082 362884,5648094 362911,5648097 362924,5648101 362979,5648111 363049,5648120 363092,5648125 363135,5648127 363162,5648130 363190,5648135 363215,5648144 363285,5648169 363326,5648183 363358,5648194 363447,5648227 363476,5648240 363555,5648270 363852,5648377 364113,5648472 364143,5648483 364205,5648504 364268,5648528 364308,5648544 364329,5648554 364396,5648581 364439,5648599 364446,5648601 364464,5648609 364508,5648618 364525,5648624 364569,5648634 364596,5648646 364625,5648659 364785,5648742 364800,5648750 364814,5648760 364828,5648771 364845,5648790 364862,5648810 364867,5648816 364904,5648870 364922,5648894 364941,5648912 364964,5648931 364992,5648951 365003,5648958 365005,5648958 365034,5648972 365059,5648983 365091,5648990 365098,5648991 365153,5649003 365160,5649006 365313,5649040 365322,5649042 365396,5649058 365443,5649070 365498,5649109 365601,5649131</Shape><Product>LightRail</Product></SegmentPublicTransport></Segments></Map>');
ausgabeRouteFahrtKarte5.symbolBusHTML='<img src="/vrs/images/VMBus.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte5.symbolLightRailHTML='<img src="/vrs/images/VMLightRail.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte5.symbolLongDistanceTrainsHTML='<img src="/vrs/images/VMLongDistanceTrains.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte5.symbolRegionalTrainsHTML='<img src="/vrs/images/VMRegionalTrains.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte5.symbolSuburbanTrainsHTML='<img src="/vrs/images/VMSuburbanTrains.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte5.symbolUndergroundHTML='<img src="/vrs/images/VMUnderground.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte5.symbolOnDemandServicesHTML='<img src="/vrs/images/VMOnDemandServices.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte5.symbolCommunityBusHTML='<img src="/vrs/images/VMBus.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte5.symbolCarHTML='<img src="/vrs/images/VMCar.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte5.symbolWalkHTML='<img src="/vrs/images/VMFuss.gif" width="15" border="0"/>';
ausgabeRouteFahrtKarte5.symbolPOIHTML='<img src="/vrs/images/SymbolPOI_38.png"/>';
ausgabeRouteFahrtKarte5.symbolStopHTML='<img src="/vrs/images/SymbolHaltestelleGross.png"/>';
}
else window.setTimeout("initializeKNCDEHNB();",500);
}
</script>
<script language="javascript" type="text/javascript">
function showInfoPOI(nr,category)
{
var url=toolbox.encodeURLSafe("http://212.66.132.219/Sehenswuerdigkeiten_vrs_02.asp?dbspalte="+nr);
var info=window.open(url,"Informationen","width=625,height=300,resizable,scrollbars=1");
info.focus();
}
var mapGHDGAMAF=null;
function initializeGHDGAMAF()
{
if ((document.getElementById("DIV_MAP_WINDOW_GHDGAMAF")!=null) &&
(document.getElementById("BUTTON_SLIDER_ZOOM_GHDGAMAF")!=null) &&
(document.getElementById("DIV_SLIDER_GHDGAMAF")!=null))
{
mapGHDGAMAF=new ASSMap('GHDGAMAF');
//mapGHDGAMAF.layerMap=new MapLayerTiles("Karte","http://mapservice.ivv-aachen.de/mapASS/",276450.0,5569887.0,535322.0,5828756.0,0.00244140625,1.25,256);
mapGHDGAMAF.layerMap=new MapLayerTiles("Karte","http://mapservice.ivv-aachen.de/mapASS/",276450.0,5523887.0,535322.0,5828756.0,0.00244140625,1.25,256);
mapGHDGAMAF.addLayer(mapGHDGAMAF.layerMap);
mapGHDGAMAF.layerMap.setOpacity(0.9);
mapGHDGAMAF.layerASS=new MapLayerASS("/vrs/cgi/service/map","ASS");
mapGHDGAMAF.addLayer(mapGHDGAMAF.layerASS);
mapGHDGAMAF.layerRouten=new MapLayerRoutes("Routen");
mapGHDGAMAF.addLayer(mapGHDGAMAF.layerRouten);
mapGHDGAMAF.hideLayer("Routen");
mapGHDGAMAF.layerSymbols=new MapLayerSymbolsASS("Symbole");
mapGHDGAMAF.addLayer(mapGHDGAMAF.layerSymbols);
mapGHDGAMAF.layerSymbols.setSymbolHighlightStartZielVia("/vrs/images/highlightFlag.png",9,30);
mapGHDGAMAF.layerSymbols.setSymbolHighlightRoute("/vrs/images/highlightRoute.png",5,6);
mapGHDGAMAF.layerSymbols.setSymbolStart("/vrs/images/Start.png",1,22);
mapGHDGAMAF.layerSymbols.setSymbolZiel("/vrs/images/Ziel.png",1,22);
mapGHDGAMAF.layerSymbols.setSymbolVia("/vrs/images/Via.png",1,22);
mapGHDGAMAF.layerSymbols.setSymbolUmstieg("/vrs/images/Umstieg_38.png",11,38);
mapGHDGAMAF.state=1;
}
else window.setTimeout("initializeGHDGAMAF();",500);
}
</script>
<script language="javascript" type="text/javascript">
var ausgabeRouteFahrtKarte4=null;
function initializeAONFPNHC()
{
var map;
if ((typeof(mapGHDGAMAF)!='undefined') && ((map=mapGHDGAMAF)!=null) && (map.state==1))
{
ausgabeRouteFahrtKarte4=new AusgabeRouteFahrtKarte("/vrs/cgi/service/objects",0.078125,'GHDGAMAF',map,'<Map><Start>350554,5649304</Start><Ziel>365601,5649131</Ziel><BBox>350438,5643924,365601,5649304</BBox><Segments><SegmentPublicTransport><Description><![CDATA[3 -> Thielenbruch]]></Description><Shape srsName="urn:adv:crs:ETRS89_UTM32">350554,5649304 350547,5649251 350542,5649214 350541,5649193 350535,5649160 350467,5648822 350438,5648694 350646,5648574 350655,5648571 350708,5648542 350714,5648538 350728,5648530 350763,5648502 350790,5648486 350847,5648455 350916,5648417 350966,5648390 351038,5648349 351088,5648323 351125,5648302 351235,5648239 351280,5648216 351306,5648195 351398,5648125 351447,5648089 351457,5648081 351542,5648017 351653,5647930 351657,5647926 351667,5647917 351689,5647902 351693,5647899 351736,5647864 351780,5647827 351804,5647807 351837,5647779 352018,5647631 352086,5647576 352097,5647565 352149,5647521 352193,5647484 352197,5647479 352256,5647432 352391,5647324 352521,5647227 352568,5647199 352656,5647146 352711,5647115 352731,5647105 352767,5647083 352792,5647071 352847,5647040 352895,5647012 352918,5646999 352939,5646987 352978,5646966 352999,5646957 353101,5646897 353177,5646854 353205,5646839 353206,5646838 353224,5646827 353234,5646821 353274,5646780 353311,5646741 353370,5646676 353394,5646648 353436,5646604 353494,5646542 353535,5646497 353542,5646490 353547,5646483 353557,5646473 353562,5646469 353564,5646464 353662,5646361 353669,5646353 353676,5646345 353736,5646278 353763,5646253 353792,5646226 353846,5646188 353854,5646181 353910,5646141 353914,5646137 353937,5646122 353982,5646090 353993,5646083 354047,5646044 354111,5646000 354208,5645931 354264,5645890 354293,5645870 354303,5645864 354358,5645825 354371,5645818 354405,5645792 354429,5645778 354466,5645758 354472,5645755 354476,5645752 354586,5645705 354700,5645645 354717,5645628 354723,5645623 354734,5645615 354738,5645613 354761,5645597 354775,5645588 354797,5645571 354815,5645558 354888,5645639 354815,5645558 354826,5645549 354829,5645547 354840,5645539 354842,5645536 354847,5645533 354852,5645529 354874,5645512 354886,5645505 354934,5645462 354967,5645433 355027,5645376 355121,5645290 355130,5645284 355162,5645266 355194,5645254 355226,5645244 355271,5645235 355302,5645223 355332,5645213 355358,5645203 355382,5645194 355423,5645180 355440,5645177 355466,5645172 355487,5645171 355509,5645172 355530,5645175 355553,5645182 355578,5645188 355610,5645202 355636,5645218 355657,5645232 355674,5645245 355691,5645256 355708,5645268 355729,5645276 355752,5645278 355768,5645277 355799,5645276 355841,5645275 355875,5645274 355909,5645273 355928,5645272 355943,5645272 355957,5645268 355967,5645261 355978,5645252 355987,5645239 355998,5645218 356002,5645203 356005,5645203 356011,5645035 355997,5644981 355992,5644960 355984,5644928 355977,5644882 355968,5644841 355964,5644815 355951,5644783 355932,5644760 355904,5644733 355899,5644726 355892,5644714 355889,5644705 355887,5644700 355884,5644671 355889,5644643 355894,5644633 355899,5644623 355907,5644603 355913,5644584 355930,5644534 355932,5644525 355935,5644504 355935,5644480 355933,5644408 355936,5644372 355942,5644320 355947,5644274 355951,5644241 355952,5644180 355953,5644173 355961,5644145 355969,5644133 355988,5644117 355993,5644114 356008,5644111 356025,5644110 356031,5644109 356055,5644105 356074,5644099 356096,5644085 356211,5644004 356285,5643954 356307,5643940 356319,5643936 356330,5643930 356338,5643928 356354,5643925 356359,5643925 356393,5643924 356400,5643925 356424,5643929 356423,5643928 356495,5643956 356524,5643964 356589,5643983 356642,5643998 356654,5643999 356697,5644009 356739,5644016 356829,5644032 356834,5644032 356839,5644033 356854,5644036 356873,5644041 356879,5644041 356945,5644051 356960,5644056 356976,5644057 357011,5644063 357018,5644064 357115,5644081 357292,5644111 357367,5644124 357398,5644130 357400,5644130 357430,5644133 357453,5644138 357473,5644142 357479,5644143 357483,5644144 357485,5644145 357534,5644151 357562,5644159 357630,5644182 357657,5644191 357669,5644198 357678,5644204 357705,5644218 357734,5644234 357786,5644276 357805,5644302 357812,5644310 357826,5644331 357827,5644332 357845,5644358 357859,5644387 357864,5644397 357879,5644432 357887,5644464 357892,5644486 357896,5644512 357907,5644581 357915,5644626 357919,5644673 357921,5644694 357929,5644777 357936,5644871 357940,5644903 357945,5644922 357945,5644926 357954,5644964 357971,5645001 357973,5645005 357744,5645216 357973,5645005 357997,5645045 358008,5645063 358018,5645082 358023,5645090 358034,5645111 358037,5645113 358040,5645120 358043,5645125 358052,5645138 358056,5645147 358062,5645158 358064,5645160 358066,5645166 358067,5645167 358069,5645172 358073,5645176 358074,5645178 358075,5645181 358118,5645255 358178,5645365 358207,5645414 358206,5645414 358207,5645414 358241,5645474 358245,5645481 358259,5645512 358275,5645532 358287,5645545 358298,5645551 358315,5645558 358335,5645568 358366,5645575 358382,5645580 358408,5645588 358416,5645591 358448,5645600 358476,5645610 358555,5645648 358584,5645661 358608,5645670 358661,5645704 358673,5645710 358683,5645717 358685,5645719 358693,5645722 358696,5645725 358699,5645727 358703,5645729 358707,5645733 358736,5645753 358786,5645792 358857,5645849 358912,5645897 358963,5645943 358984,5645958 359009,5645986 359032,5646009 359056,5646036 359072,5646055 359086,5646071 359107,5646086 359110,5646088 359134,5646101 359158,5646104 359179,5646102 359186,5646102 359198,5646098 359208,5646096 359211,5646096 359233,5646091 359245,5646087 359248,5646085 359261,5646082 359274,5646080 359293,5646076 359321,5646069 359353,5646062 359388,5646060 359446,5646086 359449,5646090 359480,5646110 359512,5646143 359564,5646172 359574,5646175 359609,5646188 359699,5646212 359723,5646221 359810,5646250 359871,5646272 359907,5646284 359963,5646305 359985,5646314 360059,5646339 360136,5646367 360200,5646391 360231,5646399 360296,5646425 360305,5646427 360317,5646431 360325,5646433 360358,5646445 360367,5646450 360383,5646453 360390,5646455 360415,5646465 360485,5646487 360492,5646488 360498,5646490 360506,5646493 360510,5646495 360515,5646496 360581,5646517 360617,5646530 360686,5646562 360697,5646566 360722,5646581 360748,5646593 360782,5646612 360806,5646625 360833,5646641 360845,5646651 360889,5646681 360910,5646699 360941,5646720 360961,5646735 360984,5646746 361018,5646765 361040,5646781 361051,5646791 361063,5646799 361104,5646833 361176,5646888 361203,5646909 361212,5646919 361230,5646942 361289,5646996 361329,5647056 361354,5647051 361384,5647076 361427,5647110 361452,5647132 361464,5647141 361519,5647188 361590,5647246 361656,5647295 361683,5647318 361702,5647338 361716,5647352 361739,5647376 361748,5647390 361754,5647396 361774,5647428 361804,5647481 361820,5647516 361831,5647537 361843,5647562 361847,5647577 361854,5647585 361865,5647610 361874,5647632 361889,5647659 361897,5647668 361898,5647671 361917,5647694 361942,5647718 361963,5647732 362105,5647815 362129,5647830 362157,5647852 362180,5647876 362200,5647894 362204,5647896 362232,5647917 362264,5647940 362282,5647956 362311,5647976 362341,5647996 362362,5648007 362389,5648018 362406,5648027 362435,5648033 362543,5648050 362701,5648069 362749,5648075 362800,5648082 362884,5648094 362911,5648097 362924,5648101 362979,5648111 363049,5648120 363092,5648125 363135,5648127 363162,5648130 363190,5648135 363215,5648144 363285,5648169 363326,5648183 363358,5648194 363447,5648227 363476,5648240 363555,5648270 363852,5648377 364113,5648472 364143,5648483 364205,5648504 364268,5648528 364308,5648544 364329,5648554 364396,5648581 364439,5648599 364446,5648601 364464,5648609 364508,5648618 364525,5648624 364569,5648634 364596,5648646 364625,5648659 364785,5648742 364800,5648750 364814,5648760 364828,5648771 364845,5648790 364862,5648810 364867,5648816 364904,5648870 364922,5648894 364941,5648912 364964,5648931 364992,5648951 365003,5648958 365005,5648958 365034,5648972 365059,5648983 365091,5648990 365098,5648991 365153,5649003 365160,5649006 365313,5649040 365322,5649042 365396,5649058 365443,5649070 365498,5649109 365601,5649131</Shape><Product>LightRail</Product></SegmentPublicTransport></Segments></Map>');
ausgabeRouteFahrtKarte4.symbolBusHTML='<img src="/vrs/images/VMBus.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte4.symbolLightRailHTML='<img src="/vrs/images/VMLightRail.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte4.symbolLongDistanceTrainsHTML='<img src="/vrs/images/VMLongDistanceTrains.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte4.symbolRegionalTrainsHTML='<img src="/vrs/images/VMRegionalTrains.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte4.symbolSuburbanTrainsHTML='<img src="/vrs/images/VMSuburbanTrains.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte4.symbolUndergroundHTML='<img src="/vrs/images/VMUnderground.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte4.symbolOnDemandServicesHTML='<img src="/vrs/images/VMOnDemandServices.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte4.symbolCommunityBusHTML='<img src="/vrs/images/VMBus.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte4.symbolCarHTML='<img src="/vrs/images/VMCar.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte4.symbolWalkHTML='<img src="/vrs/images/VMFuss.gif" width="15" border="0"/>';
ausgabeRouteFahrtKarte4.symbolPOIHTML='<img src="/vrs/images/SymbolPOI_38.png"/>';
ausgabeRouteFahrtKarte4.symbolStopHTML='<img src="/vrs/images/SymbolHaltestelleGross.png"/>';
}
else window.setTimeout("initializeAONFPNHC();",500);
}
</script>
<script language="javascript" type="text/javascript">
function showInfoPOI(nr,category)
{
var url=toolbox.encodeURLSafe("http://212.66.132.219/Sehenswuerdigkeiten_vrs_02.asp?dbspalte="+nr);
var info=window.open(url,"Informationen","width=625,height=300,resizable,scrollbars=1");
info.focus();
}
var mapCMCHEHME=null;
function initializeCMCHEHME()
{
if ((document.getElementById("DIV_MAP_WINDOW_CMCHEHME")!=null) &&
(document.getElementById("BUTTON_SLIDER_ZOOM_CMCHEHME")!=null) &&
(document.getElementById("DIV_SLIDER_CMCHEHME")!=null))
{
mapCMCHEHME=new ASSMap('CMCHEHME');
//mapCMCHEHME.layerMap=new MapLayerTiles("Karte","http://mapservice.ivv-aachen.de/mapASS/",276450.0,5569887.0,535322.0,5828756.0,0.00244140625,1.25,256);
mapCMCHEHME.layerMap=new MapLayerTiles("Karte","http://mapservice.ivv-aachen.de/mapASS/",276450.0,5523887.0,535322.0,5828756.0,0.00244140625,1.25,256);
mapCMCHEHME.addLayer(mapCMCHEHME.layerMap);
mapCMCHEHME.layerMap.setOpacity(0.9);
mapCMCHEHME.layerASS=new MapLayerASS("/vrs/cgi/service/map","ASS");
mapCMCHEHME.addLayer(mapCMCHEHME.layerASS);
mapCMCHEHME.layerRouten=new MapLayerRoutes("Routen");
mapCMCHEHME.addLayer(mapCMCHEHME.layerRouten);
mapCMCHEHME.hideLayer("Routen");
mapCMCHEHME.layerSymbols=new MapLayerSymbolsASS("Symbole");
mapCMCHEHME.addLayer(mapCMCHEHME.layerSymbols);
mapCMCHEHME.layerSymbols.setSymbolHighlightStartZielVia("/vrs/images/highlightFlag.png",9,30);
mapCMCHEHME.layerSymbols.setSymbolHighlightRoute("/vrs/images/highlightRoute.png",5,6);
mapCMCHEHME.layerSymbols.setSymbolStart("/vrs/images/Start.png",1,22);
mapCMCHEHME.layerSymbols.setSymbolZiel("/vrs/images/Ziel.png",1,22);
mapCMCHEHME.layerSymbols.setSymbolVia("/vrs/images/Via.png",1,22);
mapCMCHEHME.layerSymbols.setSymbolUmstieg("/vrs/images/Umstieg_38.png",11,38);
mapCMCHEHME.state=1;
}
else window.setTimeout("initializeCMCHEHME();",500);
}
</script>
<script language="javascript" type="text/javascript">
var ausgabeRouteFahrtKarte3=null;
function initializeDCNENEAG()
{
var map;
if ((typeof(mapCMCHEHME)!='undefined') && ((map=mapCMCHEHME)!=null) && (map.state==1))
{
ausgabeRouteFahrtKarte3=new AusgabeRouteFahrtKarte("/vrs/cgi/service/objects",0.078125,'CMCHEHME',map,'<Map><Start>350554,5649304</Start><Ziel>365601,5649131</Ziel><BBox>350438,5643924,365601,5649304</BBox><Segments><SegmentPublicTransport><Description><![CDATA[3 -> Thielenbruch]]></Description><Shape srsName="urn:adv:crs:ETRS89_UTM32">350554,5649304 350547,5649251 350542,5649214 350541,5649193 350535,5649160 350467,5648822 350438,5648694 350646,5648574 350655,5648571 350708,5648542 350714,5648538 350728,5648530 350763,5648502 350790,5648486 350847,5648455 350916,5648417 350966,5648390 351038,5648349 351088,5648323 351125,5648302 351235,5648239 351280,5648216 351306,5648195 351398,5648125 351447,5648089 351457,5648081 351542,5648017 351653,5647930 351657,5647926 351667,5647917 351689,5647902 351693,5647899 351736,5647864 351780,5647827 351804,5647807 351837,5647779 352018,5647631 352086,5647576 352097,5647565 352149,5647521 352193,5647484 352197,5647479 352256,5647432 352391,5647324 352521,5647227 352568,5647199 352656,5647146 352711,5647115 352731,5647105 352767,5647083 352792,5647071 352847,5647040 352895,5647012 352918,5646999 352939,5646987 352978,5646966 352999,5646957 353101,5646897 353177,5646854 353205,5646839 353206,5646838 353224,5646827 353234,5646821 353274,5646780 353311,5646741 353370,5646676 353394,5646648 353436,5646604 353494,5646542 353535,5646497 353542,5646490 353547,5646483 353557,5646473 353562,5646469 353564,5646464 353662,5646361 353669,5646353 353676,5646345 353736,5646278 353763,5646253 353792,5646226 353846,5646188 353854,5646181 353910,5646141 353914,5646137 353937,5646122 353982,5646090 353993,5646083 354047,5646044 354111,5646000 354208,5645931 354264,5645890 354293,5645870 354303,5645864 354358,5645825 354371,5645818 354405,5645792 354429,5645778 354466,5645758 354472,5645755 354476,5645752 354586,5645705 354700,5645645 354717,5645628 354723,5645623 354734,5645615 354738,5645613 354761,5645597 354775,5645588 354797,5645571 354815,5645558 354888,5645639 354815,5645558 354826,5645549 354829,5645547 354840,5645539 354842,5645536 354847,5645533 354852,5645529 354874,5645512 354886,5645505 354934,5645462 354967,5645433 355027,5645376 355121,5645290 355130,5645284 355162,5645266 355194,5645254 355226,5645244 355271,5645235 355302,5645223 355332,5645213 355358,5645203 355382,5645194 355423,5645180 355440,5645177 355466,5645172 355487,5645171 355509,5645172 355530,5645175 355553,5645182 355578,5645188 355610,5645202 355636,5645218 355657,5645232 355674,5645245 355691,5645256 355708,5645268 355729,5645276 355752,5645278 355768,5645277 355799,5645276 355841,5645275 355875,5645274 355909,5645273 355928,5645272 355943,5645272 355957,5645268 355967,5645261 355978,5645252 355987,5645239 355998,5645218 356002,5645203 356005,5645203 356011,5645035 355997,5644981 355992,5644960 355984,5644928 355977,5644882 355968,5644841 355964,5644815 355951,5644783 355932,5644760 355904,5644733 355899,5644726 355892,5644714 355889,5644705 355887,5644700 355884,5644671 355889,5644643 355894,5644633 355899,5644623 355907,5644603 355913,5644584 355930,5644534 355932,5644525 355935,5644504 355935,5644480 355933,5644408 355936,5644372 355942,5644320 355947,5644274 355951,5644241 355952,5644180 355953,5644173 355961,5644145 355969,5644133 355988,5644117 355993,5644114 356008,5644111 356025,5644110 356031,5644109 356055,5644105 356074,5644099 356096,5644085 356211,5644004 356285,5643954 356307,5643940 356319,5643936 356330,5643930 356338,5643928 356354,5643925 356359,5643925 356393,5643924 356400,5643925 356424,5643929 356423,5643928 356495,5643956 356524,5643964 356589,5643983 356642,5643998 356654,5643999 356697,5644009 356739,5644016 356829,5644032 356834,5644032 356839,5644033 356854,5644036 356873,5644041 356879,5644041 356945,5644051 356960,5644056 356976,5644057 357011,5644063 357018,5644064 357115,5644081 357292,5644111 357367,5644124 357398,5644130 357400,5644130 357430,5644133 357453,5644138 357473,5644142 357479,5644143 357483,5644144 357485,5644145 357534,5644151 357562,5644159 357630,5644182 357657,5644191 357669,5644198 357678,5644204 357705,5644218 357734,5644234 357786,5644276 357805,5644302 357812,5644310 357826,5644331 357827,5644332 357845,5644358 357859,5644387 357864,5644397 357879,5644432 357887,5644464 357892,5644486 357896,5644512 357907,5644581 357915,5644626 357919,5644673 357921,5644694 357929,5644777 357936,5644871 357940,5644903 357945,5644922 357945,5644926 357954,5644964 357971,5645001 357973,5645005 357744,5645216 357973,5645005 357997,5645045 358008,5645063 358018,5645082 358023,5645090 358034,5645111 358037,5645113 358040,5645120 358043,5645125 358052,5645138 358056,5645147 358062,5645158 358064,5645160 358066,5645166 358067,5645167 358069,5645172 358073,5645176 358074,5645178 358075,5645181 358118,5645255 358178,5645365 358207,5645414 358206,5645414 358207,5645414 358241,5645474 358245,5645481 358259,5645512 358275,5645532 358287,5645545 358298,5645551 358315,5645558 358335,5645568 358366,5645575 358382,5645580 358408,5645588 358416,5645591 358448,5645600 358476,5645610 358555,5645648 358584,5645661 358608,5645670 358661,5645704 358673,5645710 358683,5645717 358685,5645719 358693,5645722 358696,5645725 358699,5645727 358703,5645729 358707,5645733 358736,5645753 358786,5645792 358857,5645849 358912,5645897 358963,5645943 358984,5645958 359009,5645986 359032,5646009 359056,5646036 359072,5646055 359086,5646071 359107,5646086 359110,5646088 359134,5646101 359158,5646104 359179,5646102 359186,5646102 359198,5646098 359208,5646096 359211,5646096 359233,5646091 359245,5646087 359248,5646085 359261,5646082 359274,5646080 359293,5646076 359321,5646069 359353,5646062 359388,5646060 359446,5646086 359449,5646090 359480,5646110 359512,5646143 359564,5646172 359574,5646175 359609,5646188 359699,5646212 359723,5646221 359810,5646250 359871,5646272 359907,5646284 359963,5646305 359985,5646314 360059,5646339 360136,5646367 360200,5646391 360231,5646399 360296,5646425 360305,5646427 360317,5646431 360325,5646433 360358,5646445 360367,5646450 360383,5646453 360390,5646455 360415,5646465 360485,5646487 360492,5646488 360498,5646490 360506,5646493 360510,5646495 360515,5646496 360581,5646517 360617,5646530 360686,5646562 360697,5646566 360722,5646581 360748,5646593 360782,5646612 360806,5646625 360833,5646641 360845,5646651 360889,5646681 360910,5646699 360941,5646720 360961,5646735 360984,5646746 361018,5646765 361040,5646781 361051,5646791 361063,5646799 361104,5646833 361176,5646888 361203,5646909 361212,5646919 361230,5646942 361289,5646996 361329,5647056 361354,5647051 361384,5647076 361427,5647110 361452,5647132 361464,5647141 361519,5647188 361590,5647246 361656,5647295 361683,5647318 361702,5647338 361716,5647352 361739,5647376 361748,5647390 361754,5647396 361774,5647428 361804,5647481 361820,5647516 361831,5647537 361843,5647562 361847,5647577 361854,5647585 361865,5647610 361874,5647632 361889,5647659 361897,5647668 361898,5647671 361917,5647694 361942,5647718 361963,5647732 362105,5647815 362129,5647830 362157,5647852 362180,5647876 362200,5647894 362204,5647896 362232,5647917 362264,5647940 362282,5647956 362311,5647976 362341,5647996 362362,5648007 362389,5648018 362406,5648027 362435,5648033 362543,5648050 362701,5648069 362749,5648075 362800,5648082 362884,5648094 362911,5648097 362924,5648101 362979,5648111 363049,5648120 363092,5648125 363135,5648127 363162,5648130 363190,5648135 363215,5648144 363285,5648169 363326,5648183 363358,5648194 363447,5648227 363476,5648240 363555,5648270 363852,5648377 364113,5648472 364143,5648483 364205,5648504 364268,5648528 364308,5648544 364329,5648554 364396,5648581 364439,5648599 364446,5648601 364464,5648609 364508,5648618 364525,5648624 364569,5648634 364596,5648646 364625,5648659 364785,5648742 364800,5648750 364814,5648760 364828,5648771 364845,5648790 364862,5648810 364867,5648816 364904,5648870 364922,5648894 364941,5648912 364964,5648931 364992,5648951 365003,5648958 365005,5648958 365034,5648972 365059,5648983 365091,5648990 365098,5648991 365153,5649003 365160,5649006 365313,5649040 365322,5649042 365396,5649058 365443,5649070 365498,5649109 365601,5649131</Shape><Product>LightRail</Product></SegmentPublicTransport></Segments></Map>');
ausgabeRouteFahrtKarte3.symbolBusHTML='<img src="/vrs/images/VMBus.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte3.symbolLightRailHTML='<img src="/vrs/images/VMLightRail.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte3.symbolLongDistanceTrainsHTML='<img src="/vrs/images/VMLongDistanceTrains.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte3.symbolRegionalTrainsHTML='<img src="/vrs/images/VMRegionalTrains.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte3.symbolSuburbanTrainsHTML='<img src="/vrs/images/VMSuburbanTrains.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte3.symbolUndergroundHTML='<img src="/vrs/images/VMUnderground.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte3.symbolOnDemandServicesHTML='<img src="/vrs/images/VMOnDemandServices.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte3.symbolCommunityBusHTML='<img src="/vrs/images/VMBus.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte3.symbolCarHTML='<img src="/vrs/images/VMCar.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte3.symbolWalkHTML='<img src="/vrs/images/VMFuss.gif" width="15" border="0"/>';
ausgabeRouteFahrtKarte3.symbolPOIHTML='<img src="/vrs/images/SymbolPOI_38.png"/>';
ausgabeRouteFahrtKarte3.symbolStopHTML='<img src="/vrs/images/SymbolHaltestelleGross.png"/>';
}
else window.setTimeout("initializeDCNENEAG();",500);
}
</script>
<script language="javascript" type="text/javascript">
function showInfoPOI(nr,category)
{
var url=toolbox.encodeURLSafe("http://212.66.132.219/Sehenswuerdigkeiten_vrs_02.asp?dbspalte="+nr);
var info=window.open(url,"Informationen","width=625,height=300,resizable,scrollbars=1");
info.focus();
}
var mapHLKDCEOF=null;
function initializeHLKDCEOF()
{
if ((document.getElementById("DIV_MAP_WINDOW_HLKDCEOF")!=null) &&
(document.getElementById("BUTTON_SLIDER_ZOOM_HLKDCEOF")!=null) &&
(document.getElementById("DIV_SLIDER_HLKDCEOF")!=null))
{
mapHLKDCEOF=new ASSMap('HLKDCEOF');
//mapHLKDCEOF.layerMap=new MapLayerTiles("Karte","http://mapservice.ivv-aachen.de/mapASS/",276450.0,5569887.0,535322.0,5828756.0,0.00244140625,1.25,256);
mapHLKDCEOF.layerMap=new MapLayerTiles("Karte","http://mapservice.ivv-aachen.de/mapASS/",276450.0,5523887.0,535322.0,5828756.0,0.00244140625,1.25,256);
mapHLKDCEOF.addLayer(mapHLKDCEOF.layerMap);
mapHLKDCEOF.layerMap.setOpacity(0.9);
mapHLKDCEOF.layerASS=new MapLayerASS("/vrs/cgi/service/map","ASS");
mapHLKDCEOF.addLayer(mapHLKDCEOF.layerASS);
mapHLKDCEOF.layerRouten=new MapLayerRoutes("Routen");
mapHLKDCEOF.addLayer(mapHLKDCEOF.layerRouten);
mapHLKDCEOF.hideLayer("Routen");
mapHLKDCEOF.layerSymbols=new MapLayerSymbolsASS("Symbole");
mapHLKDCEOF.addLayer(mapHLKDCEOF.layerSymbols);
mapHLKDCEOF.layerSymbols.setSymbolHighlightStartZielVia("/vrs/images/highlightFlag.png",9,30);
mapHLKDCEOF.layerSymbols.setSymbolHighlightRoute("/vrs/images/highlightRoute.png",5,6);
mapHLKDCEOF.layerSymbols.setSymbolStart("/vrs/images/Start.png",1,22);
mapHLKDCEOF.layerSymbols.setSymbolZiel("/vrs/images/Ziel.png",1,22);
mapHLKDCEOF.layerSymbols.setSymbolVia("/vrs/images/Via.png",1,22);
mapHLKDCEOF.layerSymbols.setSymbolUmstieg("/vrs/images/Umstieg_38.png",11,38);
mapHLKDCEOF.state=1;
}
else window.setTimeout("initializeHLKDCEOF();",500);
}
</script>
<script language="javascript" type="text/javascript">
var ausgabeRouteFahrtKarte2=null;
function initializeHFACOFIH()
{
var map;
if ((typeof(mapHLKDCEOF)!='undefined') && ((map=mapHLKDCEOF)!=null) && (map.state==1))
{
ausgabeRouteFahrtKarte2=new AusgabeRouteFahrtKarte("/vrs/cgi/service/objects",0.078125,'HLKDCEOF',map,'<Map><Start>350554,5649304</Start><Ziel>365601,5649131</Ziel><BBox>350554,5646741,365601,5649451</BBox><Segments><SegmentPublicTransport><Description><![CDATA[127 -> Ebertplatz]]></Description><Shape srsName="urn:adv:crs:ETRS89_UTM32">350554,5649304 350555,5649353 350588,5649349 350595,5649349 350606,5649349 350635,5649347 350655,5649347 350677,5649344 350751,5649338 350783,5649336 350799,5649335 350826,5649332 350855,5649331 350880,5649332 350899,5649332 350925,5649333 350957,5649334 350991,5649337 351054,5649348 351068,5649351 351094,5649354 351114,5649361 351148,5649368 351187,5649375 351212,5649381 351246,5649388 351257,5649390 351261,5649391 351274,5649395 351302,5649399 351311,5649402 351328,5649403 351363,5649408 351391,5649414 351466,5649421 351491,5649423 351516,5649427 351556,5649431 351585,5649434 351610,5649435 351635,5649437 351663,5649438 351784,5649447 351817,5649446 351847,5649447 351875,5649448 351901,5649449 351924,5649449 351945,5649450 351945,5649449 351945,5649450 351961,5649451 351983,5649451 352009,5649451 352038,5649450 352071,5649450 352105,5649449 352139,5649448 352173,5649447 352206,5649446 352294,5649444 352356,5649441 352402,5649439 352381,5649440 352458,5649438 352496,5649438 352519,5649438 352542,5649437 352565,5649436 352596,5649435 352619,5649434 352640,5649433 352658,5649430 352674,5649429 352687,5649428 352698,5649426 352701,5649426 352703,5649426 352706,5649426 352753,5649419 352763,5649416 352774,5649413 352785,5649411 352796,5649407 352806,5649405 352813,5649402 352820,5649399 352827,5649397 352837,5649394 352830,5649362 352834,5649361 352844,5649358 352863,5649355 352895,5649347 352894,5649347 352895,5649347 352910,5649346 352913,5649346 352916,5649349 352919,5649354 352921,5649367 353003,5649343 353020,5649337 353037,5649331 353053,5649324 353067,5649316 353082,5649311 353095,5649302 353108,5649293 353121,5649286 353145,5649269 353155,5649261 353165,5649251 353202,5649207 353208,5649200 353224,5649182 353271,5649127 353279,5649117 353316,5649074 353344,5649042 353551,5648799 353555,5648794 353614,5648727 353620,5648714 353631,5648698 353701,5648614 353755,5648551 353770,5648533 353774,5648530 353779,5648527 353783,5648524 353786,5648521 353791,5648517 353796,5648515 353814,5648524 353835,5648542 353840,5648545 353871,5648570 353873,5648571 353876,5648574 353885,5648582 353890,5648586 353898,5648591 353904,5648596 353908,5648600 353917,5648606 353950,5648633 353975,5648661 354012,5648705 354027,5648722 354038,5648735 354047,5648750 354054,5648761 354062,5648771 354069,5648784 354077,5648797 354094,5648827 354115,5648866 354119,5648874 354122,5648887 354135,5648873 354168,5648836 354200,5648803 354297,5648865 354299,5648865 354345,5648895 354346,5648896 354402,5648931 354425,5648893 354446,5648865 354473,5648828 354494,5648800 354503,5648789 354510,5648777 354518,5648767 354524,5648755 354530,5648747 354535,5648736 354553,5648657 354554,5648652 354554,5648650 354554,5648648 354553,5648646 354551,5648644 354550,5648642 354490,5648592 354441,5648554 354421,5648539 354442,5648505 354477,5648445 354492,5648422 354500,5648406 354507,5648410 354512,5648412 354519,5648414 354525,5648415 354531,5648416 354538,5648416 354613,5648406 354626,5648405 354638,5648405 354651,5648405 354663,5648405 354675,5648405 354687,5648406 354715,5648409 354749,5648413 354751,5648414 354796,5648421 354810,5648422 354866,5648424 354891,5648423 354918,5648422 354964,5648418 355085,5648407 355095,5648404 355096,5648404 355105,5648402 355152,5648399 355164,5648399 355174,5648400 355183,5648399 355192,5648401 355199,5648401 355208,5648402 355224,5648408 355238,5648414 355252,5648422 355266,5648427 355279,5648434 355291,5648440 355301,5648449 355309,5648458 355321,5648440 355331,5648421 355342,5648401 355351,5648381 355359,5648360 355367,5648340 355350,5648383 355448,5648339</Shape><Product>Bus</Product></SegmentPublicTransport><SegmentPublicTransport><Description><![CDATA[13 -> Holweide Vischeringstr.]]></Description><Shape srsName="urn:adv:crs:ETRS89_UTM32">355448,5648339 355519,5648357 355541,5648367 355549,5648372 355555,5648376 355560,5648384 355570,5648397 355579,5648417 355588,5648435 355601,5648476 355606,5648493 355612,5648509 355621,5648528 355629,5648543 355641,5648564 355657,5648584 355675,5648605 355691,5648620 355703,5648633 355716,5648642 355735,5648654 355750,5648663 355777,5648678 355789,5648681 355801,5648685 355815,5648691 355834,5648696 355856,5648698 355889,5648703 355920,5648707 355959,5648711 355979,5648713 356003,5648718 356031,5648723 356051,5648726 356072,5648729 356098,5648734 356170,5648746 356196,5648750 356239,5648756 356263,5648758 356284,5648758 356315,5648755 356342,5648749 356372,5648739 356389,5648734 356414,5648723 356420,5648719 356437,5648712 356455,5648704 356476,5648693 356500,5648684 356528,5648674 356558,5648669 356584,5648663 356610,5648659 356633,5648656 356694,5648649 356738,5648646 356793,5648640 356820,5648637 356843,5648634 356872,5648628 356895,5648620 356920,5648612 357014,5648583 357036,5648574 357089,5648561 357108,5648558 357120,5648555 357151,5648551 357176,5648550 357297,5648549 357374,5648548 357411,5648547 357410,5648547 357411,5648547 357423,5648547 357429,5648546 357515,5648546 357640,5648542 357713,5648540 357768,5648537 357841,5648530 357865,5648526 357969,5648506 358001,5648502 358007,5648501 358016,5648500 358023,5648498 358045,5648495 358141,5648479 358241,5648461 358252,5648458 358328,5648447 358453,5648427 358521,5648416 358556,5648408 358572,5648402 358580,5648399 358621,5648378 358644,5648361 358664,5648343 358688,5648314 358723,5648248 358730,5648221 358734,5648193 358733,5648138 358730,5648122 358726,5648092 358726,5648085 358726,5648061 358727,5648059 358731,5648045 358733,5648040 358733,5648038 358742,5648022 358751,5648011 358759,5648005 358769,5647997 358783,5647991 358793,5647988 358835,5647973 358850,5647968 358866,5647963 358875,5647957 358905,5647943 358925,5647931 358927,5647931 359093,5647843 359106,5647835 359116,5647833 359266,5647753 359377,5647696 359453,5647654 359461,5647652 359492,5647634 359509,5647627 359530,5647616 359534,5647614 359548,5647608 359584,5647588 359605,5647580 359662,5647554 359667,5647549 359674,5647547 359704,5647533 359759,5647508 359793,5647495 359807,5647490 359825,5647485 359829,5647483 359835,5647479 359850,5647479 359897,5647453 359911,5647444 359939,5647427 359973,5647399 360052,5647305 360086,5647265 360100,5647248 360130,5647210 360160,5647178 360179,5647156 360227,5647102 360239,5647085 360286,5647030 360328,5646979 360337,5646973 360348,5646970 360363,5646960 360518,5647080 360363,5646960 360366,5646958 360392,5646947 360405,5646940 360409,5646938 360420,5646932 360424,5646930 360430,5646926 360434,5646925 360441,5646922 360467,5646908 360482,5646900 360484,5646899 360490,5646898 360501,5646889 360504,5646888 360514,5646883 360563,5646851 360581,5646838 360605,5646819 360637,5646797 360663,5646784 360691,5646770 360722,5646759 360748,5646753 360767,5646750 360778,5646749 360821,5646745 360853,5646743 360870,5646742 360903,5646741 360928,5646744 360963,5646752 360987,5646762 361015,5646777 361041,5646797 361092,5646833 361230,5646942 361289,5646996 361329,5647056</Shape><Product>LightRail</Product></SegmentPublicTransport><SegmentPublicTransport><Description><![CDATA[3 -> Thielenbruch]]></Description><Shape srsName="urn:adv:crs:ETRS89_UTM32">361329,5647056 361354,5647051 361384,5647076 361427,5647110 361452,5647132 361464,5647141 361519,5647188 361590,5647246 361656,5647295 361683,5647318 361702,5647338 361716,5647352 361739,5647376 361748,5647390 361754,5647396 361774,5647428 361804,5647481 361820,5647516 361831,5647537 361843,5647562 361847,5647577 361854,5647585 361865,5647610 361874,5647632 361889,5647659 361897,5647668 361898,5647671 361917,5647694 361942,5647718 361963,5647732 362105,5647815 362129,5647830 362157,5647852 362180,5647876 362200,5647894 362204,5647896 362232,5647917 362264,5647940 362282,5647956 362311,5647976 362341,5647996 362362,5648007 362389,5648018 362406,5648027 362435,5648033 362543,5648050 362701,5648069 362749,5648075 362800,5648082 362884,5648094 362911,5648097 362924,5648101 362979,5648111 363049,5648120 363092,5648125 363135,5648127 363162,5648130 363190,5648135 363215,5648144 363285,5648169 363326,5648183 363358,5648194 363447,5648227 363476,5648240 363555,5648270 363852,5648377 364113,5648472 364143,5648483 364205,5648504 364268,5648528 364308,5648544 364329,5648554 364396,5648581 364439,5648599 364446,5648601 364464,5648609 364508,5648618 364525,5648624 364569,5648634 364596,5648646 364625,5648659 364785,5648742 364800,5648750 364814,5648760 364828,5648771 364845,5648790 364862,5648810 364867,5648816 364904,5648870 364922,5648894 364941,5648912 364964,5648931 364992,5648951 365003,5648958 365005,5648958 365034,5648972 365059,5648983 365091,5648990 365098,5648991 365153,5649003 365160,5649006 365313,5649040 365322,5649042 365396,5649058 365443,5649070 365498,5649109 365601,5649131</Shape><Product>LightRail</Product></SegmentPublicTransport></Segments></Map>');
ausgabeRouteFahrtKarte2.symbolBusHTML='<img src="/vrs/images/VMBus.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte2.symbolLightRailHTML='<img src="/vrs/images/VMLightRail.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte2.symbolLongDistanceTrainsHTML='<img src="/vrs/images/VMLongDistanceTrains.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte2.symbolRegionalTrainsHTML='<img src="/vrs/images/VMRegionalTrains.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte2.symbolSuburbanTrainsHTML='<img src="/vrs/images/VMSuburbanTrains.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte2.symbolUndergroundHTML='<img src="/vrs/images/VMUnderground.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte2.symbolOnDemandServicesHTML='<img src="/vrs/images/VMOnDemandServices.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte2.symbolCommunityBusHTML='<img src="/vrs/images/VMBus.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte2.symbolCarHTML='<img src="/vrs/images/VMCar.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte2.symbolWalkHTML='<img src="/vrs/images/VMFuss.gif" width="15" border="0"/>';
ausgabeRouteFahrtKarte2.symbolPOIHTML='<img src="/vrs/images/SymbolPOI_38.png"/>';
ausgabeRouteFahrtKarte2.symbolStopHTML='<img src="/vrs/images/SymbolHaltestelleGross.png"/>';
}
else window.setTimeout("initializeHFACOFIH();",500);
}
</script>
<script language="javascript" type="text/javascript">
function showInfoPOI(nr,category)
{
var url=toolbox.encodeURLSafe("http://212.66.132.219/Sehenswuerdigkeiten_vrs_02.asp?dbspalte="+nr);
var info=window.open(url,"Informationen","width=625,height=300,resizable,scrollbars=1");
info.focus();
}
var mapDOICOIAC=null;
function initializeDOICOIAC()
{
if ((document.getElementById("DIV_MAP_WINDOW_DOICOIAC")!=null) &&
(document.getElementById("BUTTON_SLIDER_ZOOM_DOICOIAC")!=null) &&
(document.getElementById("DIV_SLIDER_DOICOIAC")!=null))
{
mapDOICOIAC=new ASSMap('DOICOIAC');
//mapDOICOIAC.layerMap=new MapLayerTiles("Karte","http://mapservice.ivv-aachen.de/mapASS/",276450.0,5569887.0,535322.0,5828756.0,0.00244140625,1.25,256);
mapDOICOIAC.layerMap=new MapLayerTiles("Karte","http://mapservice.ivv-aachen.de/mapASS/",276450.0,5523887.0,535322.0,5828756.0,0.00244140625,1.25,256);
mapDOICOIAC.addLayer(mapDOICOIAC.layerMap);
mapDOICOIAC.layerMap.setOpacity(0.9);
mapDOICOIAC.layerASS=new MapLayerASS("/vrs/cgi/service/map","ASS");
mapDOICOIAC.addLayer(mapDOICOIAC.layerASS);
mapDOICOIAC.layerRouten=new MapLayerRoutes("Routen");
mapDOICOIAC.addLayer(mapDOICOIAC.layerRouten);
mapDOICOIAC.hideLayer("Routen");
mapDOICOIAC.layerSymbols=new MapLayerSymbolsASS("Symbole");
mapDOICOIAC.addLayer(mapDOICOIAC.layerSymbols);
mapDOICOIAC.layerSymbols.setSymbolHighlightStartZielVia("/vrs/images/highlightFlag.png",9,30);
mapDOICOIAC.layerSymbols.setSymbolHighlightRoute("/vrs/images/highlightRoute.png",5,6);
mapDOICOIAC.layerSymbols.setSymbolStart("/vrs/images/Start.png",1,22);
mapDOICOIAC.layerSymbols.setSymbolZiel("/vrs/images/Ziel.png",1,22);
mapDOICOIAC.layerSymbols.setSymbolVia("/vrs/images/Via.png",1,22);
mapDOICOIAC.layerSymbols.setSymbolUmstieg("/vrs/images/Umstieg_38.png",11,38);
mapDOICOIAC.state=1;
}
else window.setTimeout("initializeDOICOIAC();",500);
}
</script>
<script language="javascript" type="text/javascript">
var ausgabeRouteFahrtKarte1=null;
function initializeLBHHDNPA()
{
var map;
if ((typeof(mapDOICOIAC)!='undefined') && ((map=mapDOICOIAC)!=null) && (map.state==1))
{
ausgabeRouteFahrtKarte1=new AusgabeRouteFahrtKarte("/vrs/cgi/service/objects",0.078125,'DOICOIAC',map,'<Map><Start>350554,5649304</Start><Ziel>365601,5649131</Ziel><BBox>350438,5643924,365601,5649304</BBox><Segments><SegmentPublicTransport><Description><![CDATA[3 -> Thielenbruch]]></Description><Shape srsName="urn:adv:crs:ETRS89_UTM32">350554,5649304 350547,5649251 350542,5649214 350541,5649193 350535,5649160 350467,5648822 350438,5648694 350646,5648574 350655,5648571 350708,5648542 350714,5648538 350728,5648530 350763,5648502 350790,5648486 350847,5648455 350916,5648417 350966,5648390 351038,5648349 351088,5648323 351125,5648302 351235,5648239 351280,5648216 351306,5648195 351398,5648125 351447,5648089 351457,5648081 351542,5648017 351653,5647930 351657,5647926 351667,5647917 351689,5647902 351693,5647899 351736,5647864 351780,5647827 351804,5647807 351837,5647779 352018,5647631 352086,5647576 352097,5647565 352149,5647521 352193,5647484 352197,5647479 352256,5647432 352391,5647324 352521,5647227 352568,5647199 352656,5647146 352711,5647115 352731,5647105 352767,5647083 352792,5647071 352847,5647040 352895,5647012 352918,5646999 352939,5646987 352978,5646966 352999,5646957 353101,5646897 353177,5646854 353205,5646839 353206,5646838 353224,5646827 353234,5646821 353274,5646780 353311,5646741 353370,5646676 353394,5646648 353436,5646604 353494,5646542 353535,5646497 353542,5646490 353547,5646483 353557,5646473 353562,5646469 353564,5646464 353662,5646361 353669,5646353 353676,5646345 353736,5646278 353763,5646253 353792,5646226 353846,5646188 353854,5646181 353910,5646141 353914,5646137 353937,5646122 353982,5646090 353993,5646083 354047,5646044 354111,5646000 354208,5645931 354264,5645890 354293,5645870 354303,5645864 354358,5645825 354371,5645818 354405,5645792 354429,5645778 354466,5645758 354472,5645755 354476,5645752 354586,5645705 354700,5645645 354717,5645628 354723,5645623 354734,5645615 354738,5645613 354761,5645597 354775,5645588 354797,5645571 354815,5645558 354888,5645639 354815,5645558 354826,5645549 354829,5645547 354840,5645539 354842,5645536 354847,5645533 354852,5645529 354874,5645512 354886,5645505 354934,5645462 354967,5645433 355027,5645376 355121,5645290 355130,5645284 355162,5645266 355194,5645254 355226,5645244 355271,5645235 355302,5645223 355332,5645213 355358,5645203 355382,5645194 355423,5645180 355440,5645177 355466,5645172 355487,5645171 355509,5645172 355530,5645175 355553,5645182 355578,5645188 355610,5645202 355636,5645218 355657,5645232 355674,5645245 355691,5645256 355708,5645268 355729,5645276 355752,5645278 355768,5645277 355799,5645276 355841,5645275 355875,5645274 355909,5645273 355928,5645272 355943,5645272 355957,5645268 355967,5645261 355978,5645252 355987,5645239 355998,5645218 356002,5645203 356005,5645203 356011,5645035 355997,5644981 355992,5644960 355984,5644928 355977,5644882 355968,5644841 355964,5644815 355951,5644783 355932,5644760 355904,5644733 355899,5644726 355892,5644714 355889,5644705 355887,5644700 355884,5644671 355889,5644643 355894,5644633 355899,5644623 355907,5644603 355913,5644584 355930,5644534 355932,5644525 355935,5644504 355935,5644480 355933,5644408 355936,5644372 355942,5644320 355947,5644274 355951,5644241 355952,5644180 355953,5644173 355961,5644145 355969,5644133 355988,5644117 355993,5644114 356008,5644111 356025,5644110 356031,5644109 356055,5644105 356074,5644099 356096,5644085 356211,5644004 356285,5643954 356307,5643940 356319,5643936 356330,5643930 356338,5643928 356354,5643925 356359,5643925 356393,5643924 356400,5643925 356424,5643929 356423,5643928 356495,5643956 356524,5643964 356589,5643983 356642,5643998 356654,5643999 356697,5644009 356739,5644016 356829,5644032 356834,5644032 356839,5644033 356854,5644036 356873,5644041 356879,5644041 356945,5644051 356960,5644056 356976,5644057 357011,5644063 357018,5644064 357115,5644081 357292,5644111 357367,5644124 357398,5644130 357400,5644130 357430,5644133 357453,5644138 357473,5644142 357479,5644143 357483,5644144 357485,5644145 357534,5644151 357562,5644159 357630,5644182 357657,5644191 357669,5644198 357678,5644204 357705,5644218 357734,5644234 357786,5644276 357805,5644302 357812,5644310 357826,5644331 357827,5644332 357845,5644358 357859,5644387 357864,5644397 357879,5644432 357887,5644464 357892,5644486 357896,5644512 357907,5644581 357915,5644626 357919,5644673 357921,5644694 357929,5644777 357936,5644871 357940,5644903 357945,5644922 357945,5644926 357954,5644964 357971,5645001 357973,5645005 357744,5645216 357973,5645005 357997,5645045 358008,5645063 358018,5645082 358023,5645090 358034,5645111 358037,5645113 358040,5645120 358043,5645125 358052,5645138 358056,5645147 358062,5645158 358064,5645160 358066,5645166 358067,5645167 358069,5645172 358073,5645176 358074,5645178 358075,5645181 358118,5645255 358178,5645365 358207,5645414 358206,5645414 358207,5645414 358241,5645474 358245,5645481 358259,5645512 358275,5645532 358287,5645545 358298,5645551 358315,5645558 358335,5645568 358366,5645575 358382,5645580 358408,5645588 358416,5645591 358448,5645600 358476,5645610 358555,5645648 358584,5645661 358608,5645670 358661,5645704 358673,5645710 358683,5645717 358685,5645719 358693,5645722 358696,5645725 358699,5645727 358703,5645729 358707,5645733 358736,5645753 358786,5645792 358857,5645849 358912,5645897 358963,5645943 358984,5645958 359009,5645986 359032,5646009 359056,5646036 359072,5646055 359086,5646071 359107,5646086 359110,5646088 359134,5646101 359158,5646104 359179,5646102 359186,5646102 359198,5646098 359208,5646096 359211,5646096 359233,5646091 359245,5646087 359248,5646085 359261,5646082 359274,5646080 359293,5646076 359321,5646069 359353,5646062 359388,5646060 359446,5646086 359449,5646090 359480,5646110 359512,5646143 359564,5646172 359574,5646175 359609,5646188 359699,5646212 359723,5646221 359810,5646250 359871,5646272 359907,5646284 359963,5646305 359985,5646314 360059,5646339 360136,5646367 360200,5646391 360231,5646399 360296,5646425 360305,5646427 360317,5646431 360325,5646433 360358,5646445 360367,5646450 360383,5646453 360390,5646455 360415,5646465 360485,5646487 360492,5646488 360498,5646490 360506,5646493 360510,5646495 360515,5646496 360581,5646517 360617,5646530 360686,5646562 360697,5646566 360722,5646581 360748,5646593 360782,5646612 360806,5646625 360833,5646641 360845,5646651 360889,5646681 360910,5646699 360941,5646720 360961,5646735 360984,5646746 361018,5646765 361040,5646781 361051,5646791 361063,5646799 361104,5646833 361176,5646888 361203,5646909 361212,5646919 361230,5646942 361289,5646996 361329,5647056 361354,5647051 361384,5647076 361427,5647110 361452,5647132 361464,5647141 361519,5647188 361590,5647246 361656,5647295 361683,5647318 361702,5647338 361716,5647352 361739,5647376 361748,5647390 361754,5647396 361774,5647428 361804,5647481 361820,5647516 361831,5647537 361843,5647562 361847,5647577 361854,5647585 361865,5647610 361874,5647632 361889,5647659 361897,5647668 361898,5647671 361917,5647694 361942,5647718 361963,5647732 362105,5647815 362129,5647830 362157,5647852 362180,5647876 362200,5647894 362204,5647896 362232,5647917 362264,5647940 362282,5647956 362311,5647976 362341,5647996 362362,5648007 362389,5648018 362406,5648027 362435,5648033 362543,5648050 362701,5648069 362749,5648075 362800,5648082 362884,5648094 362911,5648097 362924,5648101 362979,5648111 363049,5648120 363092,5648125 363135,5648127 363162,5648130 363190,5648135 363215,5648144 363285,5648169 363326,5648183 363358,5648194 363447,5648227 363476,5648240 363555,5648270 363852,5648377 364113,5648472 364143,5648483 364205,5648504 364268,5648528 364308,5648544 364329,5648554 364396,5648581 364439,5648599 364446,5648601 364464,5648609 364508,5648618 364525,5648624 364569,5648634 364596,5648646 364625,5648659 364785,5648742 364800,5648750 364814,5648760 364828,5648771 364845,5648790 364862,5648810 364867,5648816 364904,5648870 364922,5648894 364941,5648912 364964,5648931 364992,5648951 365003,5648958 365005,5648958 365034,5648972 365059,5648983 365091,5648990 365098,5648991 365153,5649003 365160,5649006 365313,5649040 365322,5649042 365396,5649058 365443,5649070 365498,5649109 365601,5649131</Shape><Product>LightRail</Product></SegmentPublicTransport></Segments></Map>');
ausgabeRouteFahrtKarte1.symbolBusHTML='<img src="/vrs/images/VMBus.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte1.symbolLightRailHTML='<img src="/vrs/images/VMLightRail.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte1.symbolLongDistanceTrainsHTML='<img src="/vrs/images/VMLongDistanceTrains.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte1.symbolRegionalTrainsHTML='<img src="/vrs/images/VMRegionalTrains.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte1.symbolSuburbanTrainsHTML='<img src="/vrs/images/VMSuburbanTrains.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte1.symbolUndergroundHTML='<img src="/vrs/images/VMUnderground.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte1.symbolOnDemandServicesHTML='<img src="/vrs/images/VMOnDemandServices.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte1.symbolCommunityBusHTML='<img src="/vrs/images/VMBus.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte1.symbolCarHTML='<img src="/vrs/images/VMCar.png" width="15" border="0"/>';
ausgabeRouteFahrtKarte1.symbolWalkHTML='<img src="/vrs/images/VMFuss.gif" width="15" border="0"/>';
ausgabeRouteFahrtKarte1.symbolPOIHTML='<img src="/vrs/images/SymbolPOI_38.png"/>';
ausgabeRouteFahrtKarte1.symbolStopHTML='<img src="/vrs/images/SymbolHaltestelleGross.png"/>';
}
else window.setTimeout("initializeLBHHDNPA();",500);
}
</script>
<script language="javascript" type="text/javascript">
var ausgabeRoute=null;
var hilfe = '';
function AusgabeRoute(form,domNodeFahrten)
{
var me=this;
this.form=form;
this.domNodeFahrten=domNodeFahrten;
this.initialize=function()
{
var nodesForm=this.form.fahrt;
var domNodeFahrt=null;
var j=0;
if (this.domNodeFahrten!=null)
{
if (nodesForm.length==undefined)
{
while((j<this.domNodeFahrten.childNodes.length) && (this.domNodeFahrten.childNodes[j].nodeName.toLowerCase()!='div')) j++;
if (j<this.domNodeFahrten.childNodes.length)
{
domNodeFahrt=this.domNodeFahrten.childNodes[j];
if (nodesForm.checked) domNodeFahrt.style.display='block';
else domNodeFahrt.style.display='none';
}
}
else
{
for(var i=0;i<nodesForm.length;i++)
{
while((j<this.domNodeFahrten.childNodes.length) && (this.domNodeFahrten.childNodes[j].nodeName.toLowerCase()!='div')) j++;
if (j<this.domNodeFahrten.childNodes.length) domNodeFahrt=this.domNodeFahrten.childNodes[j];
else break;
if (nodesForm[i].checked) domNodeFahrt.style.display='block';
else domNodeFahrt.style.display='none';
j++;
}
}
}
}
this.initialize();
}
function initialize()
{
if (document.ausgabe.langTag.value == 'DE')
{
hilfe = 'ASS_2_0_hilfe_DE.html';
}
else if (document.ausgabe.langTag.value == 'K')
{
hilfe = 'ASS_2_0_hilfe_K.html';
}
else
{
hilfe = 'ASS_2_0_hilfe_DE.html';
}
if ((document.ausgabe!=null) && (document.getElementById("FBHEGIGE")!=null))
{
ausgabeRoute=new AusgabeRoute(document.ausgabe,document.getElementById("FBHEGIGE"));
}
else window.setTimeout("initialize();",500);
}
function TarifberaterNRW(tarifNRWxml)
{
//alert(tarifNRWxml);
document.FORM_NRWTARIF.xmlRoute.value = tarifNRWxml;
document.FORM_NRWTARIF.submit();
}
</script>
<script src="http://www.vrsinfo.de/typo3/contrib/prototype/prototype.js?1352757360" type="text/javascript"></script><script src="http://www.vrsinfo.de/fileadmin/SBS/ext/vrs_stations/map/vrs_stations_map_scripts.js?1354034792" type="text/javascript"></script><script src="http://www.vrsinfo.de/typo3temp/javascript_93077bb238.js?1358325264" type="text/javascript"></script><script src="http://www.vrsinfo.de/fileadmin/templates/js/jquery-1.4.2.min.js" type="text/javascript"></script><script src="http://www.vrsinfo.de/fileadmin/templates/js/jquery.tools.min.js" type="text/javascript"></script><script src="http://www.vrsinfo.de/fileadmin/templates/js/custom.js" type="text/javascript"></script><script type="text/javascript">
/*<![CDATA[*/
var GHfontsizeClass = Class.create({
initialize: function(baseValue, actValue, minValue, maxValue, increment) {
this.baseValue = baseValue;
this.actValue = actValue;
this.minValue = minValue;
this.maxValue = maxValue;
this.increment = increment;
this.newValue = this.actValue;
},
changeFontSize: function(whatToDo) {
switch (whatToDo) {
case "smaller":
this.newValue = this.actValue - this.increment;
break;
case "reset":
this.newValue = this.baseValue;
break;
case "larger":
this.newValue = this.actValue + this.increment;
break;
}
if(this.newValue < this.minValue) {
this.newValue = this.minValue;
}
if(this.newValue > this.maxValue) {
this.newValue = this.maxValue;
}
document.getElementById("main_content").style.fontSize = this.newValue + "px";
if(this.actValue != this.newValue) {
this.saveToSession();
if(this.newValue > this.baseValue && this.actValue <= this.baseValue) {
Element.removeClassName("tx-ghfontsize-smaller", "active");
Element.removeClassName("tx-ghfontsize-reset", "active");
Element.addClassName("tx-ghfontsize-larger", "active");
}
if(this.newValue == this.baseValue && this.actValue != this.baseValue) {
Element.removeClassName("tx-ghfontsize-smaller", "active");
Element.addClassName("tx-ghfontsize-reset", "active");
Element.removeClassName("tx-ghfontsize-larger", "active");
}
if(this.newValue < this.baseValue && this.actValue >= this.baseValue) {
Element.addClassName("tx-ghfontsize-smaller", "active");
Element.removeClassName("tx-ghfontsize-reset", "active");
Element.removeClassName("tx-ghfontsize-larger", "active");
}
}
this.actValue = this.newValue;
},
saveToSession: function() {
new Ajax.Request ( "index.php", {
parameters: {eID: "gh_fontsize", tx_ghfontsize_newvalue: this.newValue}
});
}
});
var GHfontsize = new GHfontsizeClass(12, 12, 12, 16, 2);
/*]]>*/
</script><link rel="StyleSheet" href="/vrs/css/vrsFahrplan.css" type="text/css" media="screen">
<link rel="StyleSheet" href="/vrs/common/css/vrsNormalView.css" type="text/css">
</head>
<body id="id332" onload="initializeMCMCJAJA();initializeKNCDEHNB();initializeGHDGAMAF();initializeAONFPNHC();initializeCMCHEHME();initializeDCNENEAG();initializeHLKDCEOF();initializeHFACOFIH();initializeDOICOIAC();initializeLBHHDNPA();initialize();" onpageshow="if (event.persisted) initializeMCMCJAJA();if (event.persisted) initializeKNCDEHNB();if (event.persisted) initializeGHDGAMAF();if (event.persisted) initializeAONFPNHC();if (event.persisted) initializeCMCHEHME();if (event.persisted) initializeDCNENEAG();if (event.persisted) initializeHLKDCEOF();if (event.persisted) initializeHFACOFIH();if (event.persisted) initializeDOICOIAC();if (event.persisted) initializeLBHHDNPA();if (event.persisted) initialize();" onunload="">
<div id="IIKDINGA">
<a name="top"></a>
<div class="page_margins">
<div class="page"><div id="nav"><ul class="firstLevel"><li class="first"><a href="http://www.vrsinfo.de/aktuelles/aktuelle-fahrplanaenderungen.html" title="Aktuelles" onfocus="blurLink(this);">Aktuelles<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]--><ul class="secondLevel"><li><a href="http://www.vrsinfo.de/aktuelles/aktuelle-fahrplanaenderungen.html" title="Aktuelle Fahrplanänderungen" onfocus="blurLink(this);">Aktuelle Fahrplanänderungen</a></li><li><a href="http://www.vrsinfo.de/aktuelles/die-bahn-baut-bauprojekte-2013.html" title="Die Bahn baut - Bauprojekte 2013" onfocus="blurLink(this);">Die Bahn baut - Bauprojekte 2013</a></li><li><a href="http://www.vrsinfo.de/aktuelles/aktuelle-situation-auf-der-linie-re-9.html" title="Aktuelle Situation auf der Linie RE 9" onfocus="blurLink(this);">Aktuelle Situation auf der Linie RE 9</a></li><li><a href="http://www.vrsinfo.de/aktuelles/aktuelle-ticketinformationen/karnevalsticket-2013.html" title="Aktuelle Ticketinformationen" onfocus="blurLink(this);">Aktuelle Ticketinformationen</a></li><li><a href="http://www.vrsinfo.de/aktuelles/veranstaltungen/ohrwuermer-konzert.html" title="Veranstaltungen" onfocus="blurLink(this);">Veranstaltungen</a></li><li><a href="http://www.vrsinfo.de/aktuelles/freizeittipps/wunderbar-wanderbar-2012.html" title="Freizeittipps" onfocus="blurLink(this);">Freizeittipps</a></li><li class="last"><a href="http://www.vrsinfo.de/aktuelles/newsletter.html" title="Newsletter" onfocus="blurLink(this);">Newsletter</a></li></ul><!--[if lte IE 6]></td></tr></table></a><![endif]--></li><li class="active"><a href="http://www.vrsinfo.de/fahrplan.html" title="Fahrplan" onfocus="blurLink(this);">Fahrplan<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]--><ul class="secondLevel"><li><a href="http://www.vrsinfo.de/fahrplan/fahrplanauskunft.html" title="Fahrplanauskunft" onfocus="blurLink(this);">Fahrplanauskunft</a></li><li><a href="http://www.vrsinfo.de/fahrplan/haltestellenabfahrtsplan.html" title="Haltestellenabfahrtsplan" onfocus="blurLink(this);">Haltestellenabfahrtsplan</a></li><li><a href="http://www.vrsinfo.de/fahrplan/haltestellen-und-linieninformationen.html" title="Haltestellen- und Linieninformationen" onfocus="blurLink(this);">Haltestellen- und Linieninformationen</a></li><li><a href="http://www.vrsinfo.de/fahrplan/haltestellen-und-linieninformationen.html" title="Linienfahrpläne (Minis)" onfocus="blurLink(this);">Linienfahrpläne (Minis)</a></li><li><a href="http://www.vrsinfo.de/fahrplan/fahrplanbuecher.html" title="Fahrplanbücher" onfocus="blurLink(this);">Fahrplanbücher</a></li><li><a href="http://www.vrsinfo.de/fahrplan/fahrplan-mobil.html" title="Fahrplan mobil" onfocus="blurLink(this);">Fahrplan mobil</a></li><li><a href="http://www.vrsinfo.de/fahrplan/intermodaler-router.html" title="Intermodaler Router" onfocus="blurLink(this);">Intermodaler Router</a></li><li class="last"><a href="http://www.vrsinfo.de/fahrplan/fahrplanauskunft-als-igoogle-gadget.html" title="Fahrplanauskunft als iGoogle-Gadget" onfocus="blurLink(this);">Fahrplanauskunft als iGoogle-Gadget</a></li></ul><!--[if lte IE 6]></td></tr></table></a><![endif]--></li><li><a href="http://www.vrsinfo.de/streckennetz/schienennetzplaene.html" title="Streckennetz" onfocus="blurLink(this);">Streckennetz<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]--><ul class="secondLevel"><li><a href="http://www.vrsinfo.de/streckennetz/schienennetzplaene.html" title="Schienennetzpläne" onfocus="blurLink(this);">Schienennetzpläne</a></li><li><a href="http://www.vrsinfo.de/streckennetz/busnetzplaene.html" title="Busnetzpläne" onfocus="blurLink(this);">Busnetzpläne</a></li><li class="last"><a href="http://www.vrsinfo.de/streckennetz/uebersichtskarten.html" title="Übersichtskarten" onfocus="blurLink(this);">Übersichtskarten</a></li></ul><!--[if lte IE 6]></td></tr></table></a><![endif]--></li><li><a href="http://www.vrsinfo.de/tickets/preisliste.html" title="Tickets" onfocus="blurLink(this);">Tickets<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]--><ul class="secondLevel"><li><a href="http://www.vrsinfo.de/tickets/preisliste.html" title="Preisliste" onfocus="blurLink(this);">Preisliste</a></li><li><a href="http://www.vrsinfo.de/tickets/ticketberater.html" title="Ticketberater" onfocus="blurLink(this);">Ticketberater</a></li><li><a href="http://www.vrsinfo.de/tickets/ticketshop.html" target="_blank" title="Ticketshop" onfocus="blurLink(this);">Ticketshop</a></li><li><a href="http://www.vrsinfo.de/tickets/tickets-fuer-einzelne-fahrten/einzelticket.html" title="Tickets für einzelne Fahrten" onfocus="blurLink(this);">Tickets für einzelne Fahrten</a></li><li><a href="http://www.vrsinfo.de/tickets/tickets-fuer-regelmaessige-fahrten/wochenticket.html" title="Tickets für regelmige Fahrten" onfocus="blurLink(this);">Tickets für regelmige Fahrten</a></li><li><a href="http://www.vrsinfo.de/tickets/tickets-fuer-job-und-ausbildung/jobticket.html" title="Tickets für Job und Ausbildung" onfocus="blurLink(this);">Tickets für Job und Ausbildung</a></li><li><a href="http://www.vrsinfo.de/tickets/vrs-abos/vrs-tickets-im-abo.html" title="VRS-Abos" onfocus="blurLink(this);">VRS-Abos</a></li><li><a href="http://www.vrsinfo.de/tickets/tickets-zu-nachbarverbuenden.html" title="Tickets zu Nachbarverbünden" onfocus="blurLink(this);">Tickets zu Nachbarverbünden</a></li><li><a href="http://www.vrsinfo.de/tickets/tickets-fuer-nrw-weite-fahrten.html" title="Tickets für NRW-weite Fahrten" onfocus="blurLink(this);">Tickets für NRW-weite Fahrten</a></li><li><a href="http://www.vrsinfo.de/tickets/kombitickets.html" title="KombiTickets" onfocus="blurLink(this);">KombiTickets</a></li><li><a href="http://www.vrsinfo.de/tickets/fahrradtickets.html" title="FahrradTickets" onfocus="blurLink(this);">FahrradTickets</a></li><li><a href="http://www.vrsinfo.de/tickets/sonstige-tickets/db-city-ticket.html" title="Sonstige Tickets" onfocus="blurLink(this);">Sonstige Tickets</a></li><li class="last"><a href="http://www.vrsinfo.de/tickets/tarif-und-befoerderungs-bestimmungen.html" title="Tarif- und Beförderungs-bestimmungen" onfocus="blurLink(this);">Tarif- und Beförderungs-bestimmungen</a></li></ul><!--[if lte IE 6]></td></tr></table></a><![endif]--></li><li><a href="http://www.vrsinfo.de/service/fundsachen.html" title="Service" onfocus="blurLink(this);">Service<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]--><ul class="secondLevel"><li><a href="http://www.vrsinfo.de/service/fundsachen.html" title="Fundsachen" onfocus="blurLink(this);">Fundsachen</a></li><li><a href="http://www.vrsinfo.de/service/kundencenter-im-vrs.html" title="Kundencenter im VRS" onfocus="blurLink(this);">Kundencenter im VRS</a></li><li><a href="http://www.vrsinfo.de/service/telefon-hotline.html" title="Telefon-Hotline" onfocus="blurLink(this);">Telefon-Hotline</a></li><li><a href="http://www.vrsinfo.de/fahrplan/haltestellen-und-linieninformationen.html" title="Haltestellen- und Linieninformationen" onfocus="blurLink(this);">Haltestellen- und Linieninformationen</a></li><li><a href="http://www.vrsinfo.de/service/anruflinien-ast-taxibus-etc.html" title="Anruflinien (AST, TaxiBus, etc.)" onfocus="blurLink(this);">Anruflinien (AST, TaxiBus, etc.)</a></li><li><a href="http://www.vrsinfo.de/service/parkride-bikeride.html" title="Park&Ride / Bike&Ride" onfocus="blurLink(this);">Park&Ride / Bike&Ride</a></li><li><a href="http://www.vrsinfo.de/service/barrierefreies-reisen.html" title="Barrierefreies Reisen" onfocus="blurLink(this);">Barrierefreies Reisen</a></li><li><a href="http://www.vrsinfo.de/service/mobilitaetsgarantie.html" title="Mobilitätsgarantie" onfocus="blurLink(this);">Mobilitätsgarantie</a></li><li><a href="http://www.vrsinfo.de/service/fahrplanbuecher-shop.html" title="Fahrplanbücher - Shop" onfocus="blurLink(this);">Fahrplanbücher - Shop</a></li><li><a href="http://www.vrsinfo.de/service/downloads.html" title="Downloads" onfocus="blurLink(this);">Downloads</a></li><li class="last"><a href="http://www.vrsinfo.de/service/gut-zu-wissen.html" title="Gut zu wissen" onfocus="blurLink(this);">Gut zu wissen</a></li></ul><!--[if lte IE 6]></td></tr></table></a><![endif]--></li><li><a href="http://www.vrsinfo.de/der-vrs/verbundgebiet.html" title="Der VRS" onfocus="blurLink(this);">Der VRS<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]--><ul class="secondLevel"><li><a href="http://www.vrsinfo.de/der-vrs/verbundgebiet.html" title="Verbundgebiet" onfocus="blurLink(this);">Verbundgebiet</a></li><li><a href="http://www.vrsinfo.de/der-vrs/organisation.html" title="Organisation" onfocus="blurLink(this);">Organisation</a></li><li><a href="http://www.vrsinfo.de/der-vrs/verkehrsunternehmen.html" title="Verkehrsunternehmen" onfocus="blurLink(this);">Verkehrsunternehmen</a></li><li><a href="http://www.vrsinfo.de/der-vrs/vrs-gremien.html" target="_blank" title="VRS-Gremien" onfocus="blurLink(this);">VRS-Gremien</a></li><li><a href="http://www.vrsinfo.de/der-vrs/verbundberichte.html" title="Verbundberichte" onfocus="blurLink(this);">Verbundberichte</a></li><li><a href="http://www.vrsinfo.de/der-vrs/vrs-team.html" title="VRS-Team" onfocus="blurLink(this);">VRS-Team</a></li><li><a href="http://www.vrsinfo.de/der-vrs/stellenangebote.html" title="Stellenangebote" onfocus="blurLink(this);">Stellenangebote</a></li><li><a href="http://www.vrsinfo.de/der-vrs/mobilitaetsmanagement.html" title="Mobilitätsmanagement" onfocus="blurLink(this);">Mobilitätsmanagement</a></li><li><a href="http://www.vrsinfo.de/der-vrs/oekoprofit-koeln-2011.html" title="ÖKOPROFIT Köln 2011" onfocus="blurLink(this);">ÖKOPROFIT Köln 2011</a></li><li><a href="http://www.vrsinfo.de/der-vrs/nahverkehr-rheinland.html" title="Nahverkehr Rheinland" onfocus="blurLink(this);">Nahverkehr Rheinland</a></li><li><a href="http://www.vrsinfo.de/der-vrs/kompetenzcenter-marketing-nrw.html" title="Kompetenzcenter Marketing NRW" onfocus="blurLink(this);">Kompetenzcenter Marketing NRW</a></li><li class="last"><a href="http://www.vrsinfo.de/der-vrs/busse-und-bahnen-in-nrw.html" title="Busse und Bahnen in NRW" onfocus="blurLink(this);">Busse und Bahnen in NRW</a></li></ul><!--[if lte IE 6]></td></tr></table></a><![endif]--></li><li><a href="http://www.vrsinfo.de/presse/pressemeldungen.html" title="Presse" onfocus="blurLink(this);">Presse<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]--><ul class="secondLevel"><li><a href="http://www.vrsinfo.de/presse/pressemeldungen.html" title="Pressemeldungen" onfocus="blurLink(this);">Pressemeldungen</a></li><li><a href="http://www.vrsinfo.de/presse/pressearchiv.html" title="Pressearchiv" onfocus="blurLink(this);">Pressearchiv</a></li><li><a href="http://www.vrsinfo.de/presse/pressekontakt.html" title="Pressekontakt" onfocus="blurLink(this);">Pressekontakt</a></li><li><a href="http://www.vrsinfo.de/der-vrs/verbundberichte.html" title="Verbundberichte" onfocus="blurLink(this);">Verbundberichte</a></li><li class="last"><a href="http://www.vrsinfo.de/presse/vrs-aktuell-nachrichtenblatt.html" title="VRS aktuell - Nachrichtenblatt" onfocus="blurLink(this);">VRS aktuell - Nachrichtenblatt</a></li></ul><!--[if lte IE 6]></td></tr></table></a><![endif]--></li><li class="leftDirection"><a href="http://www.vrsinfo.de/kontakt/e-mail-formular.html" title="Kontakt" onfocus="blurLink(this);">Kontakt<!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table><tr><td><![endif]--><ul class="secondLevel"><li><a href="http://www.vrsinfo.de/kontakt/e-mail-formular.html" title="E-Mail-Formular" onfocus="blurLink(this);">E-Mail-Formular</a></li><li class="last"><a href="http://www.vrsinfo.de/kontakt/impressum.html" title="Impressum" onfocus="blurLink(this);">Impressum</a></li></ul><!--[if lte IE 6]></td></tr></table></a><![endif]--></li><li class="lang"><a href="http://www.vrsinfo.de/englisch/the-vrs/vrs-about-us.html"><img title="Change language: English" alt="Change language: English" src="http://www.vrsinfo.de/fileadmin/templates/images/flag_eng.jpg"></a></li></ul></div></div>
<div id="header"><a href="http://www.vrsinfo.de/index.php" class="homelink"><img src="http://www.vrsinfo.de/fileadmin/templates/images_2012/logo_2012.gif" width="209" height="88" border="0" alt="zur Startseite"></a><span class="facebook"><a href="http://www.facebook.com/vrsinfo" target="_blank"><img src="http://www.vrsinfo.de/fileadmin/templates/images_2012/vrs_facebook.jpg" width="33" height="33" border="0" alt=""></a></span><div class="tx-macinasearchbox-pi1">
<div class="searchbox" id="searchbox-ger">
<form action="http://www.vrsinfo.de/einzelseiten/suche.html?L=0" method="post" name="searchform" id="searchform">
<input name="tx_indexedsearch[submit_button]" type="image" src="http://www.vrsinfo.de/fileadmin/templates/images_2012/searchbutton.jpg" class="submitbutton">
<input name="tx_indexedsearch[sword]" type="text" value="Suchbegriff" id="sword" class="inputfield">
<input type="hidden" name="tx_indexedsearch[_sections]" value="0">
<input type="hidden" name="tx_indexedsearch[pointer]" value="0">
<input type="hidden" name="tx_indexedsearch[ext]" value="1">
<input type="hidden" name="tx_indexedsearch[lang]" value="0">
</form>
</div>
</div>
</div>
<div id="main">
<div id="subnavigation"><ul><li><a href="http://www.vrsinfo.de/fahrplan/fahrplanauskunft.html" title="Fahrplanauskunft" onfocus="blurLink(this);">Fahrplanauskunft</a></li><li><a href="http://www.vrsinfo.de/fahrplan/haltestellenabfahrtsplan.html" title="Haltestellenabfahrtsplan" onfocus="blurLink(this);">Haltestellenabfahrtsplan</a></li><li><a href="http://www.vrsinfo.de/fahrplan/haltestellen-und-linieninformationen.html" title="Haltestellen- und Linieninformationen" onfocus="blurLink(this);">Haltestellen- und Linieninformationen</a></li><li><a href="http://www.vrsinfo.de/fahrplan/haltestellen-und-linieninformationen.html" title="Linienfahrpläne (Minis)" onfocus="blurLink(this);">Linienfahrpläne (Minis)</a></li><li><a href="http://www.vrsinfo.de/fahrplan/fahrplanbuecher.html" title="Fahrplanbücher" onfocus="blurLink(this);">Fahrplanbücher</a></li><li><a href="http://www.vrsinfo.de/fahrplan/fahrplan-mobil.html" title="Fahrplan mobil" onfocus="blurLink(this);">Fahrplan mobil</a></li><li><a href="http://www.vrsinfo.de/fahrplan/intermodaler-router.html" title="Intermodaler Router" onfocus="blurLink(this);">Intermodaler Router</a></li><li><a href="http://www.vrsinfo.de/fahrplan/fahrplanauskunft-als-igoogle-gadget.html" title="Fahrplanauskunft als iGoogle-Gadget" onfocus="blurLink(this);">Fahrplanauskunft als iGoogle-Gadget</a></li></ul></div>
<div class="werbebanner-below-nav"></div>
<div class="content_wrapper">
<div id="breadcrumb"><ul><li><a href="http://www.vrsinfo.de/" title="Startseite" onfocus="blurLink(this);">Startseite</a></li><li><a href="http://www.vrsinfo.de/fahrplan.html" title="Fahrplan" onfocus="blurLink(this);">Fahrplan</a></li><li><span title="Fahrplanauskunft">Fahrplanauskunft</span></li></ul></div>
<div id="main_content">
<div id="content"><!--DMAILER_SECTION_BOUNDARY_--><div id="c1171" class="csc-default"><div class="csc-header csc-header-n1"><h1 class="csc-firstHeader">Fahrplanauskunft</h1></div></div><!--DMAILER_SECTION_BOUNDARY_END--><!--DMAILER_SECTION_BOUNDARY_--><div id="c1170" class="csc-default"><div class="csc-header csc-header-n2"><h2>Neue Version der VRS-Fahrplanauskunft - Auskünfte für den VRS und ganz NRW</h2></div><div class="csc-textpic-text"></div></div><!--DMAILER_SECTION_BOUNDARY_END--><!--DMAILER_SECTION_BOUNDARY_--><div id="c1168" class="csc-default"><div id="EMCGIOJE"> <!-- onselectstart="return false;" oncontextmenu="return false;"> -->
<div class="Fahrplanauskunft">
<form action="/vrs/cgi/page/eingabeRoute" name="eingabe" method="post">
<input type="hidden" name="aktion" value>
<input type="hidden" name="start" value="Ollenhauerring">
<input type="hidden" name="startID" value="283">
<input type="hidden" name="startTyp" value="Stop">
<input type="hidden" name="via" value>
<input type="hidden" name="viaID" value="-1">
<input type="hidden" name="viaTyp" value>
<input type="hidden" name="viaZeitAufenthalt" value="0">
<input type="hidden" name="ziel" value="Dellbrück Hauptstr.">
<input type="hidden" name="zielID" value="563">
<input type="hidden" name="zielTyp" value="Stop">
<input type="hidden" name="datumVon" value="25.02.2013">
<input type="hidden" name="zeitVon" value="06:08">
<input type="hidden" name="datumBis" value="25.02.2013">
<input type="hidden" name="zeitBis" value="06:32">
<input type="hidden" name="suchrichtung" value="ab">
<input type="hidden" name="anzRouten" value="5">
<input type="hidden" name="barriere" value>
<input type="hidden" name="zuschlagfrei" value="1">
<input type="hidden" name="verkehrsmittel" value="LongDistanceTrains,RegionalTrains,SuburbanTrains,Underground,LightRail,Bus,CommunityBus,OnDemandServices">
<input type="hidden" name="schnellsteVerbindung" value="1">
<input type="hidden" name="wenigeUmstiege" value="1">
<input type="hidden" name="kurzeFusswege" value="0">
<input type="hidden" name="gehgeschwindigkeit" value="3">
<input type="hidden" name="umsteigegeschwindigkeit" value="1000">
<input type="hidden" name="anzErw" value="1">
<input type="hidden" name="anzKind" value="0">
<input type="hidden" name="rueckfahrt" value="0">
<input type="hidden" name="langTag" value="DE">
</form>
<form action="/vrs/cgi/process/ausgabeRoute" name="ausgabe" method="post">
<input type="hidden" name="aktion" value>
<input type="hidden" name="start" value="Ollenhauerring">
<input type="hidden" name="startID" value="283">
<input type="hidden" name="startTyp" value="Stop">
<input type="hidden" name="via" value>
<input type="hidden" name="viaID" value="-1">
<input type="hidden" name="viaTyp" value>
<input type="hidden" name="viaZeitAufenthalt" value="0">
<input type="hidden" name="ziel" value="Dellbrück Hauptstr.">
<input type="hidden" name="zielID" value="563">
<input type="hidden" name="zielTyp" value="Stop">
<input type="hidden" name="datumVon" value="25.02.2013">
<input type="hidden" name="zeitVon" value="06:08">
<input type="hidden" name="datumBis" value="25.02.2013">
<input type="hidden" name="zeitBis" value="06:32">
<input type="hidden" name="suchrichtung" value="ab">
<input type="hidden" name="anzRouten" value="5">
<input type="hidden" name="barriere" value>
<input type="hidden" name="zuschlagfrei" value="1">
<input type="hidden" name="verkehrsmittel" value="LongDistanceTrains,RegionalTrains,SuburbanTrains,Underground,LightRail,Bus,CommunityBus,OnDemandServices">
<input type="hidden" name="schnellsteVerbindung" value="1">
<input type="hidden" name="wenigeUmstiege" value="1">
<input type="hidden" name="kurzeFusswege" value="0">
<input type="hidden" name="gehgeschwindigkeit" value="3">
<input type="hidden" name="umsteigegeschwindigkeit" value="1000">
<input type="hidden" name="anzErw" value="1">
<input type="hidden" name="anzKind" value="0">
<input type="hidden" name="rueckfahrt" value="0">
<input type="hidden" name="langTag" value="DE">
<input type="hidden" name="mapRequest" value>
<input type="hidden" name="checkBoxFahrten" value>
<input type="hidden" name="buttonOnOff" value="button_1=0;button_2=0;button_3=0;button_4=0;button_5=0;button_6=0;button_7=0;button_8=0;button_9=0;">
<input type="hidden" name="buttonICal" value>
<div style="padding-bottom:10px;" id="AKOGGLFF"><div class="formularBox" style="width:100%;">
<div class="headline1" style="width:100%"><div style="padding-left:10px;">Ihre Verbindung</div></div>
<div class="content" style="width:100%"><div id="GAJCCLFG" style="padding:10px;">
<table cellspacing="0" cellpadding="0" border="0" style="width:100%">
<tr>
<td style="vertical-align:top">
<div id="CJPCDGPB">
<table cellspacing="0" cellpadding="0" border="0" style="width:100%;background-color:#F2F2F2;" id="HMBCJFGG">
<tr>
<td style="width:50px;font-weight:bold;padding:5px">Start</td><td style="padding:5px"><div style="width:100%" id="HPIGCEHF">
<table cellspacing="0" cellpadding="0" border="0" style="width:100%">
<tr>
<td style="width:15px;"><img src="/vrs/images/SymbolHaltestelle.png" border="0"></td>
<td style="padding-left:5px;">Ollenhauerring, Köln-Bocklemünd</td>
<td align="right">
</td>
</tr>
<tr>
<td></td>
<td colspan="2"></td>
</tr>
</table>
</div></td>
</tr><tr>
<td style="font-weight:bold;padding:0px 5px 5px 5px;">Ziel</td><td style="padding:0px 5px 5px 5px"><div style="width:100%" id="ADIAAKLH">
<table cellspacing="0" cellpadding="0" border="0" style="width:100%">
<tr>
<td style="width:15px;"><img src="/vrs/images/SymbolHaltestelle.png" border="0"></td>
<td style="padding-left:5px;">Thielenbruch, Köln-Dellbrück</td>
<td align="right">
</td>
</tr>
<tr>
<td></td>
<td colspan="2"></td>
</tr>
</table>
</div></td>
</tr><tr>
<td style="font-weight:bold;padding:5px 5px 5px 5px;">Zeit</td><td style="padding:5px 5px 5px 5px">25.02.2013, Abfahrt ab 6:00</td>
</tr>
</table>
</div>
</td>
<td align="right" style="width:150px;padding-left:10px;">
<div id="DDDGGLGG" style="height:21px;">
<div style="position:relative;width:100%;height:100%" onclick="with (document.ausgabe) { action='/vrs/cgi/page/ausgabeRoutePDF'; checkBoxFahrten.value=fahrt_1.value+';'+fahrt_2.value+';'+fahrt_3.value+';'+fahrt_4.value+';'; if(typeof fahrt_5 != 'undefined') checkBoxFahrten.value = checkBoxFahrten.value+fahrt_5.value; mapRequest.value=ausgabeRouteFahrtKarte1.getRequest(); mapRequest.value=mapRequest.value+';'+ausgabeRouteFahrtKarte2.getRequest(); mapRequest.value=mapRequest.value+';'+ausgabeRouteFahrtKarte3.getRequest(); mapRequest.value=mapRequest.value+';'+ausgabeRouteFahrtKarte4.getRequest(); if(typeof ausgabeRouteFahrtKarte5 != 'undefined') mapRequest.value=mapRequest.value+';'+ausgabeRouteFahrtKarte5.getRequest();target='_blank'; submit(); target=''; }">
<table cellspacing="0" cellpadding="0" border="0" class="button" style="position:relative;z-index:1;width:100%;height:100%">
<tr>
<td align="center" style="">Drucken</td>
</tr>
</table>
<div style="position:absolute;top:0px;left:0px;width:100%;height:100%;z-index:0;"><img src="/vrs/images/farbverlauf-120.jpg" style="width:100%;height:100%"></div>
</div>
</div>
<div style="height:5px"></div>
<div id="MOBHFOIE" style="height:21px;">
<div style="position:relative;width:100%;height:100%" onclick="document.eingabe.aktion.value='';document.eingabe.submit();">
<table cellspacing="0" cellpadding="0" border="0" class="button" style="position:relative;z-index:1;width:100%;height:100%">
<tr>
<td align="center" style="">Verbindung ändern</td>
</tr>
</table>
<div style="position:absolute;top:0px;left:0px;width:100%;height:100%;z-index:0;"><img src="/vrs/images/farbverlauf-120.jpg" style="width:100%;height:100%"></div>
</div>
</div>
<div style="height:5px"></div>
<div id="COAEPEBB" style="height:21px;">
<div style="position:relative;width:100%;height:100%" onclick="document.eingabe.aktion.value='Rueckfahrt';document.eingabe.submit();">
<table cellspacing="0" cellpadding="0" border="0" class="button" style="position:relative;z-index:1;width:100%;height:100%">
<tr>
<td align="center" style="">Rückfahrt</td>
</tr>
</table>
<div style="position:absolute;top:0px;left:0px;width:100%;height:100%;z-index:0;"><img src="/vrs/images/farbverlauf-120.jpg" style="width:100%;height:100%"></div>
</div>
</div>
<div style="height:5px"></div>
<div id="CAJELDHC" style="height:21px;">
<div style="position:relative;width:100%;height:100%" onclick="document.eingabe.aktion.value='Anschlussfahrt';document.eingabe.submit();">
<table cellspacing="0" cellpadding="0" border="0" class="button" style="position:relative;z-index:1;width:100%;height:100%">
<tr>
<td align="center" style="">Anschlussfahrt</td>
</tr>
</table>
<div style="position:absolute;top:0px;left:0px;width:100%;height:100%;z-index:0;"><img src="/vrs/images/farbverlauf-120.jpg" style="width:100%;height:100%"></div>
</div>
</div>
<div style="height:5px"></div>
</td>
</tr>
</table>
</div></div>
</div></div>
<div style="padding-bottom:10px;">
<table cellspacing="0" cellpadding="0" border="0" class="link" onclick="window.location.href='/vrs/cgi/page/eingabeRoute'+'?lang='+document.ausgabe.langTag.value;">
<tr>
<td>
<img src="/vrs/images/VRSPfeilRechtsBWkl.gif">
</td>
<td style="padding-left:5px;text-decoration:underline;">Neue Verbindung</td>
</tr>
</table>
</div>
<div style="padding-bottom:10px;">
<table cellspacing="0" cellpadding="0" border="0" class="link" onclick="window.open('/vrs/hilfe/'+hilfe,'Hilfe','width=800px,height=900px,resizable,scrollbars=1');">
<tr>
<td>
<img src="/vrs/images/VRSPfeilRechtsBWkl.gif">
</td>
<td style="padding-left:5px;text-decoration:underline;">Benutzerhilfe</td>
</tr>
</table>
</div>
<div style="padding-bottom:10px;" id="IPCHCLCG"><div class="formularBox" style="width:100%;">
<div class="headline1" style="width:100%"><div style="padding-left:10px;">Übersicht</div></div>
<div class="content" style="width:100%"><div id="OGOAJOHD" style="padding:10px;">
<table cellspacing="0" cellpadding="0" border="0" style="width:100%">
<tr>
<td align="right" style="padding-bottom:5px">
<div style="width:150px;height:21px" id="IBLEMMHE">
<div style="position:relative;width:100%;height:100%" onclick="with (document.ausgabe) { action='/vrs/cgi/process/ausgabeRoute'; aktion.value='Frueher'; submit(); }">
<table cellspacing="0" cellpadding="0" border="0" class="button" style="position:relative;z-index:1;width:100%;height:100%">
<tr>
<td align="center" style="">frühere Fahrten</td>
</tr>
</table>
<div style="position:absolute;top:0px;left:0px;width:100%;height:100%;z-index:0;"><img src="/vrs/images/farbverlauf-120.jpg" style="width:100%;height:100%"></div>
</div>
</div>
</td>
</tr>
<tr>
<td>
<div id="NEHHOLEH">
<table cellspacing="0" cellpadding="0" border="0" style="width:100%;padding-top:5px;margin-bottom:5px;background-color:#F2F2F2;" id="MIFGDMLG">
<tr>
<th style="width:25px"> </th><th style="font-weight:bold;"> </th><th style="font-weight:bold;text-align:center;padding-bottom:5px">Zeit</th><th style="font-weight:bold;text-align:center;padding-bottom:5px">Dauer</th><th style="font-weight:bold;text-align:center;padding-bottom:5px">Fußwege</th><th style="font-weight:bold;text-align:center;padding-bottom:5px">Reiseweite</th><th style="font-weight:bold;text-align:center;padding-right:5px;padding-bottom:5px">Umsteigen</th><th> </th>
</tr><tr>
<td style="background-color:#D4D4D4;"> </td><td style="background-color:#D4D4D4;"> </td><td align="center" style="padding-bottom:2px;padding-top:2px;background-color:#D4D4D4;font-weight:bold;">Mo, 25.02.2013</td><td style="background-color:#D4D4D4;"> </td><td style="background-color:#D4D4D4;"> </td><td style="background-color:#D4D4D4;"> </td><td style="background-color:#D4D4D4;"> </td><td style="background-color:#D4D4D4;"> </td>
</tr><tr>
<td style="border-top:1px solid #CCCCCC;padding-left:5px;padding-bottom:5px;padding-top:5px">
<input name="fahrt_1" type="checkbox" value="1" checked="checked" onClick="if (this.checked) {this.value=1;document.getElementById('PLODEGDE').style.display='block';} else{this.value=0; document.getElementById('PLODEGDE').style.display='none';}">
</td><td style="border-top:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px"><span class="link" onclick="document.getElementById('PLODEGDE').scrollIntoView();">1. Fahrt</span></td><td align="center" style="border-top:1px solid #CCCCCC;border-left:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px">
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td>ab</td>
<td style="text-align:right;padding-left:5px;font-weight:bold;">06:08</td>
</tr>
<tr>
<td>an</td>
<td style="text-align:right;padding-left:5px;font-weight:bold;">06:55</td>
</tr>
</table>
</td><td style="text-align:center;border-top:1px solid #CCCCCC;border-left:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px">47 min</td><td style="text-align:center;border-top:1px solid #CCCCCC;border-left:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px">-</td><td style="text-align:center;border-top:1px solid #CCCCCC;border-left:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px">ca. 21.1 km</td><td style="text-align:center;border-top:1px solid #CCCCCC;border-left:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px">0</td><td style="text-align:center;border-top:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px;padding-right:5px">
<div style="width:1px;height:1px;"></div>
</td>
</tr><tr>
<td style="border-top:1px solid #CCCCCC;padding-left:5px;padding-bottom:5px;padding-top:5px">
<input name="fahrt_2" type="checkbox" value="1" checked="checked" onClick="if (this.checked) {this.value=1;document.getElementById('PNBDGGID').style.display='block';} else{this.value=0; document.getElementById('PNBDGGID').style.display='none';}">
</td><td style="border-top:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px"><span class="link" onclick="document.getElementById('PNBDGGID').scrollIntoView();">2. Fahrt</span></td><td align="center" style="border-top:1px solid #CCCCCC;border-left:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px">
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td>ab</td>
<td style="text-align:right;padding-left:5px;font-weight:bold;">06:12</td>
</tr>
<tr>
<td>an</td>
<td style="text-align:right;padding-left:5px;font-weight:bold;">06:55</td>
</tr>
</table>
</td><td style="text-align:center;border-top:1px solid #CCCCCC;border-left:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px">43 min</td><td style="text-align:center;border-top:1px solid #CCCCCC;border-left:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px">-</td><td style="text-align:center;border-top:1px solid #CCCCCC;border-left:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px">ca. 18.6 km</td><td style="text-align:center;border-top:1px solid #CCCCCC;border-left:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px">2</td><td style="text-align:center;border-top:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px;padding-right:5px">
<div style="width:1px;height:1px;"></div>
</td>
</tr><tr>
<td style="border-top:1px solid #CCCCCC;padding-left:5px;padding-bottom:5px;padding-top:5px">
<input name="fahrt_3" type="checkbox" value="1" checked="checked" onClick="if (this.checked) {this.value=1;document.getElementById('MHLEJAHH').style.display='block';} else{this.value=0; document.getElementById('MHLEJAHH').style.display='none';}">
</td><td style="border-top:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px"><span class="link" onclick="document.getElementById('MHLEJAHH').scrollIntoView();">3. Fahrt</span></td><td align="center" style="border-top:1px solid #CCCCCC;border-left:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px">
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td>ab</td>
<td style="text-align:right;padding-left:5px;font-weight:bold;">06:18</td>
</tr>
<tr>
<td>an</td>
<td style="text-align:right;padding-left:5px;font-weight:bold;">07:05</td>
</tr>
</table>
</td><td style="text-align:center;border-top:1px solid #CCCCCC;border-left:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px">47 min</td><td style="text-align:center;border-top:1px solid #CCCCCC;border-left:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px">-</td><td style="text-align:center;border-top:1px solid #CCCCCC;border-left:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px">ca. 21.1 km</td><td style="text-align:center;border-top:1px solid #CCCCCC;border-left:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px">0</td><td style="text-align:center;border-top:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px;padding-right:5px">
<div style="width:1px;height:1px;"></div>
</td>
</tr><tr>
<td style="border-top:1px solid #CCCCCC;padding-left:5px;padding-bottom:5px;padding-top:5px">
<input name="fahrt_4" type="checkbox" value="1" checked="checked" onClick="if (this.checked) {this.value=1;document.getElementById('LPJAJFJD').style.display='block';} else{this.value=0; document.getElementById('LPJAJFJD').style.display='none';}">
</td><td style="border-top:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px"><span class="link" onclick="document.getElementById('LPJAJFJD').scrollIntoView();">4. Fahrt</span></td><td align="center" style="border-top:1px solid #CCCCCC;border-left:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px">
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td>ab</td>
<td style="text-align:right;padding-left:5px;font-weight:bold;">06:28</td>
</tr>
<tr>
<td>an</td>
<td style="text-align:right;padding-left:5px;font-weight:bold;">07:15</td>
</tr>
</table>
</td><td style="text-align:center;border-top:1px solid #CCCCCC;border-left:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px">47 min</td><td style="text-align:center;border-top:1px solid #CCCCCC;border-left:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px">-</td><td style="text-align:center;border-top:1px solid #CCCCCC;border-left:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px">ca. 21.1 km</td><td style="text-align:center;border-top:1px solid #CCCCCC;border-left:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px">0</td><td style="text-align:center;border-top:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px;padding-right:5px">
<div style="width:1px;height:1px;"></div>
</td>
</tr><tr>
<td style="border-top:1px solid #CCCCCC;padding-left:5px;padding-bottom:5px;padding-top:5px">
<input name="fahrt_5" type="checkbox" value="1" checked="checked" onClick="if (this.checked) {this.value=1;document.getElementById('LGGADCFA').style.display='block';} else{this.value=0; document.getElementById('LGGADCFA').style.display='none';}">
</td><td style="border-top:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px"><span class="link" onclick="document.getElementById('LGGADCFA').scrollIntoView();">5. Fahrt</span></td><td align="center" style="border-top:1px solid #CCCCCC;border-left:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px">
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td>ab</td>
<td style="text-align:right;padding-left:5px;font-weight:bold;">06:32</td>
</tr>
<tr>
<td>an</td>
<td style="text-align:right;padding-left:5px;font-weight:bold;">07:15</td>
</tr>
</table>
</td><td style="text-align:center;border-top:1px solid #CCCCCC;border-left:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px">43 min</td><td style="text-align:center;border-top:1px solid #CCCCCC;border-left:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px">-</td><td style="text-align:center;border-top:1px solid #CCCCCC;border-left:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px">ca. 18.6 km</td><td style="text-align:center;border-top:1px solid #CCCCCC;border-left:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px">2</td><td style="text-align:center;border-top:1px solid #CCCCCC;padding-bottom:5px;padding-top:5px;padding-right:5px">
<div style="width:1px;height:1px;"></div>
</td>
</tr>
</table>