-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfoo.html
2045 lines (921 loc) · 54.2 KB
/
foo.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 lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Ticket Availability</title>
<meta name="robots" content="index, follow">
<meta name="description" content="The gateway to Britain's National Rail network. A portal into UK rail travel including train company information and promotions; train times; fares enquiries; ticket purchase and train running information.">
<meta name="keywords" content="national rail, british rail, trains, railway, uk rail travel, train times, train timetables, train information, uk trains, uk railway, late trains">
<meta http-equiv="expires" content="0">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-control" content="no-cache, no-store, must-revalidate">
<style type="text/css">
<!--
@import url(/templates/css/global/main.css);
@import url(/templates/css/stationfinder/stationfinder.css);
@import url(/templates/css/ojp/ojp.css);
@import url(/templates/css/ojp/fwlXtra.css);
@import url(/templates/css/thales/thales_ojp.css);
@import url(/templates/css/thales/promotions.css);
@import url(/templates/css/ojp/phase2.css);
@media tty {
i{content:"\";/*" "*/}}; @import '/templates/css/global/ie55pc.css'; {;}/*";}
}/* */
-->
</style>
<style type="text/css">
@import url(/templates/css/ojp/te2.css);
@import url(/templates/css/ojp/tabs_te.css);
@import url(/templates/css/ojp/phase2_tf1.css);
@import url(/templates/css/ojp/phase2_te2.css);
@import url(/templates/css/ojp/phase2_tl1.css);
</style>
<link rel="stylesheet" href="/templates/css/global/hideNav.css" type="text/css" media="print">
<link rel="stylesheet" href="/templates/css/ojp/hideNav.css" type="text/css" media="print">
<script type="text/javascript"
src="/javascript/thales/all_cal.js">/* Xin's Popup calendar script - Xin Yang (http://www.yxscripts.com/) Script featured on/available at http://dynamicdrive.com/ This notice must stay intact for use */
</script>
<script type="text/javascript">
var origCRS = "OXF";
var destCRS = "NTH";
var viaCRS = "";
var searchedOutDate = "19/02/2009";
var searchedOutTime = "12:15";
var searchedReturnDate = "";
var searchedReturnTime = "";
var numAdults = "1";
var numChildren = "0";
var railcards = "";
var searchedClass = "any";
var searchedStrategy = "fastest"
var selectedOutDate = "";
var selectedOutTime = "";
var selectedReturnDate = "";
var selectedReturnTime = "";
var selectedOutSleeper = "";
var selectedReturnSleeper = "";
var outTicketType = "";
var returnTicketType = "";
var changeAt = "";
var single = "";
var totalPrice = "";
var lengthOfVisit = "";
</script>
<script type="text/javascript" src="/generated-files/stationFinder-ojp-data.js"></script>
<script type="text/javascript" src="/javascript/yahoo/yahoo-dom-event.js"></script>
<script type="text/javascript" src="/javascript/yahoo/autocomplete-min.js"></script>
<script type="text/javascript" src="/javascript/stationfinder/search.js"></script>
<script type="text/javascript" src="/javascript/stationfinder/init.js"></script>
<script type="text/javascript" src="/javascript/stationfinder/station-autocomplete.js"></script>
<script type="text/javascript" src="/javascript/stationfinder/config-ojp.js"></script>
</head>
<body>
<!-- Rid= Aid=lzwWQX8AAAEAAEljDbUAAAIO M=nre-ojp-app101-->
<div id="top" class="container2">
<div class="holder2">
<div class="eightmin">
<div id="header">
<!-- Header starts -->
<link rel="stylesheet" type="text/css" href="/templates/css/global/content.css" />
<!--[if IE 7]>
<link type="text/css" rel="stylesheet" href="/templates/css/global/ie7_fix.css" media="all" />
<![endif]-->
<!--[if lt IE 7]>
<link type="text/css" rel="stylesheet" href="/templates/css/global/ie55-6_fix.css" media="all" />
<![endif]-->
<!--[if lt IE 6]>
<link type="text/css" rel="stylesheet" href="/templates/css/global/ie55_fix.css" media="all" />
<![endif]-->
<link href="/templates/css/ojp/ojpcleanup.css" type="text/css" rel="stylesheet">
<!-- Header starts -->
<div id="headerOJP">
<div id="logo">
<a href="http://nationalrail.co.uk/" title="National Rail Enquiries home page">
<img src="/templates/images/nationalrailenquiries.gif" alt="National Rail Enquiries" />
</a>
</div>
<div class="clear">
</div>
</div>
<!-- Header ends -->
<script type="text/javascript">
<!--
var gaJsHost = (("https:" == document.location.protocol) ? " https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
//-->
</script>
<script type="text/javascript">
<!--
var pageTracker = _gat._getTracker("UA-316623-8");
pageTracker._setDomainName("nationalrail.co.uk"); pageTracker._initData(); pageTracker._trackPageview();
//-->
</script>
<!-- Header ends -->
<!-- Navigation starts -->
<!-- Navigation starts -->
<div class="navigation" id="external_navigation">
<ul>
<li>
<a href="http://nationalrail.co.uk/" id="nav_home" title="Home" accesskey="1">Home</a>
</li>
<li class="current">
<a href="http://nationalrail.co.uk/times_fares/" id="nav_ttf" title="Train Times & Fares"
accesskey="2">Train Times & Fares</a>
</li>
<li>
<a href="http://nationalrail.co.uk/stations_destinations/" id="nav_sd" title="Stations & Destinations"
accesskey="3">Stations & Destinations</a>
</li>
<li>
<a href="http://nationalrail.co.uk/service_disruptions/" id="nav_sa" title="Service Disruptions" accesskey="4">
Service Disruptions
</a>
</li>
<li>
<a href="http://hotels.nationalrail.co.uk/?partnerId=8091&skin=engb.nationalrail&intcmp=NRE_tnav" id="nav_ht" title="Hotels" accesskey="5">Hotels</a>
</li>
<li>
<a href="http://nationalrail.co.uk/passenger_services/" id="nav_ps" title="Passenger Services" accesskey="6">
Passenger Services
</a>
</li>
<li>
<a href="http://nationalrail.co.uk/tocs_maps/" id="nav_tcm" title="Train Companies & Maps" accesskey="7">
Train Companies & Maps
</a>
</li>
<li>
<a href="http://nationalrail.co.uk/contact/" id="nav_cu" title="Contact Us" accesskey="8">Contact Us</a>
</li>
<li>
<a href="https://ojp.nationalrail.co.uk/en/p/member/home" id="nav_mh" title="My Homepage"
accesskey="9">My Homepage</a>
</li>
</ul>
</div>
<!-- Navigation ends -->
<!-- Navigation ends -->
</div>
<!-- Title Bar starts -->
<script type="text/javascript" src="/templates/javascript/global/ticker.js"></script>
<script type="text/javascript" src="/javascript/newsflash/newsflash_homepage.js"></script>
<script type="text/javascript" src="/javascript/newsflash/newsflash_homepage_local.js"></script>
<div id="title_bar">
<div id="tickerShell">
<ul id="ticker" class="info"></ul>
</div>
<div id="topsearch">
<label for="topsrchfld">
Search
</label>
<form action="http://nationalrail.co.uk/site_help/search.html" method="get">
<fieldset>
<input type="text" id="topsrchfld" name="query" />
<span class="btn" id="quickSearch">
<input type="submit" value="GO" alt="Search site" />
</span>
</fieldset>
</form>
<div id="googletop">
<span id="googletext">enhanced<br/>by</span>
<span id="googleimage"> </span>
</div>
</div>
<div class="clear">
</div>
</div>
<script type="text/javascript">
<!--
initTicker();
-->
</script>
<!-- Title Bar ends -->
<div class="seven">
<div class="container2">
<div class="holder2">
<div id="secondnavwrapper">
<!-- Secondary Navigation starts -->
<!-- Menu -->
<div id="left_menu">
<h1>
Train Times & Fares
</h1>
<ul id="leftNav" class="links">
<li class="nav2 selected">
<a href="http://ojp.nationalrail.co.uk/" title="Journey Planner">
Journey
Planner
</a>
</li>
<li class="nav2 ">
<a href="http://nationalrail.co.uk/times_fares/ldb/index.html" title="Live Departures & Arrivals">
Live Departures & Arrivals
</a>
</li>
<li class="nav2">
<a href="http://nationalrail.co.uk/times_fares/simple_fares.html" title="Introducing Simpler Rail Fares">Introducing Simpler Rail Fares</a>
</li>
<li class="nav2">
<a href="http://nationalrail.co.uk/times_fares/purchasing_tickets/" title="Purchasing Tickets">
Purchasing Tickets
</a>
</li>
<li class="nav2">
<a href="http://nationalrail.co.uk/times_fares/season_tickets/" title="Season Tickets">Season Tickets</a>
</li>
<li class="nav2">
<a href="http://nationalrail.co.uk/times_fares/promotions/" title="Special Offers">Special Offers</a>
</li>
<li class="nav2">
<a href="http://nationalrail.co.uk/times_fares/railcards.html" title="Railcards">Railcards</a>
</li>
<li class="nav2">
<a href="http://nationalrail.co.uk/times_fares/plusbus.html" title="PlusBus">PlusBus</a>
</li>
<li class="nav2">
<a href="http://nationalrail.co.uk/times_fares/london/" title="Travelling around London">
Travelling
around London
</a>
</li>
<li class="nav2">
<a href="http://nationalrail.co.uk/times_fares/nrcc/" title="Conditions of Carriage">
Conditions
of Carriage
</a>
</li>
<li class="nav2">
<a href="http://nationalrail.co.uk/passenger_services/info_on_the_move/" title="Mobiles and PDAs">
Mobiles and PDAs
</a>
</li>
<li class="nav2">
<a href="http://nationalrail.co.uk/times_fares/download_tt.html" title="Timetables you can Print">
Timetables you can Print
</a>
</li>
<li class="nav2">
<a href="http://nationalrail.co.uk/times_fares/nrt_updates.html" title="National Rail Timetable">
National Rail Timetable
</a>
</li>
</ul>
</div>
<!-- End of Menu -->
<!-- End Secondary navigation -->
<!-- Related Links starts -->
<!-- Related Links starts -->
<div id="left_links_public">
<h1>Most Popular</h1>
<ul class="links">
<li class="llspritta">
<a href="http://ojp.nationalrail.co.uk/en/pj/amq?restartJourney=true" onclick="return homeAlertMeWindow('http://ojp.nationalrail.co.uk/en/pj/amq?restartJourney=true');" target="_blank" >Travel Alerts</a>
</li>
<li class="llspritstc">
<a href="http://ojp.nationalrail.co.uk/en/pj/sts" title="Season Ticket Calculator" class="longtext">Season Ticket Calculator </a>
</li>
<li class="llspritpt">
<a href="http://ojp.nationalrail.co.uk/en/pj/pyot" title="Pocket Timetable">Pocket Timetable </a>
</li>
<li class="llspriterwu">
<a href="https://ojp.nationalrail.co.uk/en/p/reg" title="Register with Us">Register with Us</a>
</li>
<li class="llspritsbf">
<a href="http://ojp.nationalrail.co.uk/en/pj/sbfodl" title="Search By Fare">Search By Fare</a>
</li>
<li class="llspritett">
<a href="http://www.nationalrail.co.uk/passenger_services/info_on_the_move/traintracker.html" title="TrainTracker">TrainTracker™</a>
</li>
<li class="llspritelisa">
<a href="http://lisa.nationalrail.co.uk/NREBot/" title="Lisa our Virtual Assistant" class="longtext" target="_blank" onclick="openBot('','');return false;" >Lisa our Virtual Assistant</a>
</li>
<li class="llspriteiotm">
<a href="http://www.nationalrail.co.uk/passenger_services/info_on_the_move/" title="Information on the Move" class="longtext" >Information on the Move</a>
</li>
</ul>
</div>
<!-- Related Links ends -->
<!-- Related Links ends -->
</div> <!-- SECOND NAV WRAPPER CLOSE -->
<div id="contentwrap">
<!--
<div class="spacerdiv"></div>
-->
<div class="ojp4stage">
<div class="ojpstage">
<span class="bold">
<a href="/en/pj/pjfc" id="StepOneJourneyPlanner">1. Journey Planner </a>>
</span>
</div>
<div class="ojpstage">
<span class="bold">
<a href="tt">2. Timetable Results </a>>
</span>
</div>
<div class="ojpstage">
<span class="red">3. Fares & Availability ></span>
</div>
<div class="ojpstage">
<span class="dulledtext">4. Purchase Tickets</span>
</div>
<div class="emptyfooter"></div>
</div>
<div class="spacerdiv"></div>
<script type="text/javascript" src="/javascript/thales/FaresCalculator.js">
</script>
<div class="contentbgboth clearfix">
<div id="userDetail">
<a class="login noprint" title="Register" href="/en/p/#">Log In / Register</a>
</div>
<div id="OJPpageHeader">
<h2>FARES AVAILABILITY</h2>
</div>
<div id="journeySumInfoWrap">
<div id="wrapperSideBySideLeft">
<p class="blueMsg">
<a href="http://nationalrail.co.uk/permalink/stations/OXF.html">
Oxford (OXF)
</a>
to
<a href="http://nationalrail.co.uk/permalink/stations/NTH.html">
Neath (NTH)
</a>
</p>
<div id="journeyDates" class="jrnyDatesTE">
<p class="bgMarginLeft">
Outward:
Thursday 19 February, 2009
</p>
</div>
</div>
<!-- Only show this section if there are fares -->
<div id="wrapperSideBySideRight">
<div id="jrnyPrice_WB" class="jrnyPrice whiteBack">
<div id="price">
<!-- price details -->
<p>
<span class="jrnyPriceTXTnoline newMarginPriceLarge">
£59.00
</span>
</p>
<p class="bold floatPriceTxtLeft">
<a href="/en/pj/cpsfsj0" title="Cheapest available fare">Cheapest available fare</a>
</p>
<p class="floatPriceTxtLeft">
This total fare is for 1 Adult.
</p>
</div>
</div>
</div>
<!-- Family railcard information -->
</div>
<div class="clearfixmine"> </div>
<form name="faresForm" id="faresForm" action="/en/pj/fa1" method="post">
<div id="resultsHolderBlue">
<a name="ttt"></a>
<table id="ResultsTable" cellpadding="0" cellspacing="0" border="0" summary="Table showing outward journey details">
<thead>
<tr class="topRow">
<td></td>
<td class="resTblHeadRow" colspan="5">
<a name="outboundEarlierLink" href="esf" title="Earlier Train" id="outboundEarlierLink" class="SnglearlierLink noprint">Earlier</a>
<h3>Outward Journey</h3>
<a name="outboundLaterLink" href="lsf" id="outboundLaterLink" title="Later Train" class="SngllaterLink noprint">Later</a>
</td>
</tr>
</thead>
<tbody>
<!-- Row 0 -->
<tr>
<th class="resHead headColwidth" scope="row">Journey Number</th>
<td class="borderCellTopNew singleCellwidth"><a title="option 1" href="#out1">1</a></td>
<td class="borderCellTopNew singleCellwidth"><a title="option 2" href="#out2">2</a></td>
<td class="borderCellTopNew singleCellwidth"><a title="option 3" href="#out3">3</a></td>
<td class="borderCellTopNew singleCellwidth"><a title="option 4" href="#out4">4</a></td>
<td class="borderCellTopNew singleCellwidth rightBorder"><a title="option 5" href="#out5">5</a></td>
</tr>
<!-- Row 1 -->
<tr>
<th class="resHead headColwidth" scope="row">Dep. Station</th>
<td class="borderCell singleCellwidth">
<a title="Oxford (OXF)" href="http://nationalrail.co.uk/permalink/stations/OXF.html">OXF</a>
</td>
<td class="borderCell singleCellwidth">
<a title="Oxford (OXF)" href="http://nationalrail.co.uk/permalink/stations/OXF.html">OXF</a>
</td>
<td class="borderCell singleCellwidth">
<a title="Oxford (OXF)" href="http://nationalrail.co.uk/permalink/stations/OXF.html">OXF</a>
</td>
<td class="borderCell singleCellwidth">
<a title="Oxford (OXF)" href="http://nationalrail.co.uk/permalink/stations/OXF.html">OXF</a>
</td>
<td class="borderCell singleCellwidth rightBorder">
<a title="Oxford (OXF)" href="http://nationalrail.co.uk/permalink/stations/OXF.html">OXF</a>
</td>
</tr>
<!-- Row 2 -->
<tr>
<th class="resHead resHeadNoBorder headColwidth" scope="row">Arr. Station</th>
<td class="borderCell singleCellwidth">
<a title="Neath (NTH)" href="http://nationalrail.co.uk/permalink/stations/NTH.html">NTH</a>
</td>
<td class="borderCell singleCellwidth">
<a title="Neath (NTH)" href="http://nationalrail.co.uk/permalink/stations/NTH.html">NTH</a>
</td>
<td class="borderCell singleCellwidth">
<a title="Neath (NTH)" href="http://nationalrail.co.uk/permalink/stations/NTH.html">NTH</a>
</td>
<td class="borderCell singleCellwidth">
<a title="Neath (NTH)" href="http://nationalrail.co.uk/permalink/stations/NTH.html">NTH</a>
</td>
<td class="borderCell singleCellwidth rightBorder">
<a title="Neath (NTH)" href="http://nationalrail.co.uk/permalink/stations/NTH.html">NTH</a>
</td>
</tr>
<!-- Row 3 -->
<tr class="activeRow">
<th class="resHead activeRow headColwidth" scope="row">
<input id="DepartsBTN" type="submit" class="sortButton sortButtonActive" name="journeySort" value="Departs" title="Sort by departure time">
</th>
<td class="borderCell singleCellwidth">
12:31
</td>
<td class="borderCell singleCellwidth">
12:37
</td>
<td class="borderCell singleCellwidth">
13:31
</td>
<td class="borderCell singleCellwidth">
13:37
</td>
<td class="borderCell singleCellwidth rightBorder">
14:37
</td>
</tr>
<!-- Row 4 -->
<tr>
<th class="resHead headColwidth" scope="row">
<a name="ArrivesBTN"></a>
<input id="ArrivesBTN" type="submit" title="Sort by arrival time" class="sortButton" name="journeySort" value="Arrives">
</th>
<td class="borderCell singleCellwidth">15:29</td>
<td class="borderCell singleCellwidth">15:29</td>
<td class="borderCell singleCellwidth">16:29</td>
<td class="borderCell singleCellwidth">16:29</td>
<td class="borderCell singleCellwidth rightBorder">17:29</td>
</tr>
<!-- Row 5 -->
<tr>
<th class="resHead headColwidth" scope="row">
<input id="DurationBTN" type="submit" title="Sort by duration" class="sortButton" name="journeySort" value="Duration">
</th>
<td class="borderCell singleCellwidth">2:58</td>
<td class="borderCell singleCellwidth">2:52</td>
<td class="borderCell singleCellwidth">2:58</td>
<td class="borderCell singleCellwidth">2:52</td>
<td class="borderCell singleCellwidth rightBorder">2:52</td>
</tr>
<!-- Row 6 -->
<tr>
<th class="resHead headColwidth" scope="row">
<input id="ChangesBTN" type="submit" title="Sort by number of changes" class="sortButton" name="journeySort" value="Changes">
</th>
<td class="borderCell singleCellwidth">1</td>
<td class="borderCell singleCellwidth">2</td>
<td class="borderCell singleCellwidth">1</td>