-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbriem_4obhhj.html
7691 lines (7468 loc) · 449 KB
/
briem_4obhhj.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
<HTML dir=ltr lang=en xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<HEAD><TITLE>checkmytrip.com - your travel itinerary</TITLE><!-- PTR03048448 -->
<META content=IE=EmulateIE7 http-equiv=X-UA-Compatible>
<SCRIPT type=text/javascript>
</SCRIPT>
<!-- template name: cmtr -->
<BASE href="https://www.checkmytrip.com/plnext/XCMTXITN/201103291323/static/">
<META content="text/html; charset=iso-8859-1" http-equiv=Content-Type>
<META name=Description
content="Search Flight Schedules, Search Flight Timetables, Get Current Flight Status, Find Hotels, Find Car Rental, Get Trip Tools, Plan Trip. Find Airport Information">
<META name=Keywords
content="Air availability, Flights, Flight schedules, Flight Times, Cheap Flights, Flight Status, Hotel Search, Car Rental, Business Travel, Travel Guides, World clock, World Time, E-travel">
<LINK rel=stylesheet type=text/css
href="https://www.checkmytrip.com/plnext/default/WPN_AeRE_v14.1_117O_180411/static/css_v2/main.css">
<LINK rel=stylesheet type=text/css
href="https://www.checkmytrip.com/plnext/default/WPN_AeRE_v14.1_117O_180411/static/css_v2/CONF.css">
<LINK rel=stylesheet type=text/css href="./css/custom_image_cal.css" media="screen, print">
<LINK rel=stylesheet type=text/css href="./css/custom_image_content.css" media="screen, print">
<LINK rel=stylesheet type=text/css href="./css/custom_image_PLTG.css" media="screen, print">
<LINK rel=stylesheet type=text/css href="./css/custom_image_TL.css" media="screen, print">
<LINK rel=stylesheet type=text/css href="./css/custom_image_SeatMap.css" media="screen, print">
<LINK rel=stylesheet type=text/css href="./css/custom_image_holiday.css" media="screen, print">
<LINK rel=stylesheet type=text/css href="./css/custom.css" media="screen, print">
<LINK rel=stylesheet type=text/css
href="https://www.checkmytrip.com/plnext/default/WPN_AeRE_v14.1_117O_180411/static/css/style_print.css"
media=print>
<LINK rel=stylesheet type=text/css href="./css/style_print.css" media=print>
<SCRIPT language=JavaScript type=text/javascript
src="https://www.checkmytrip.com/plnext/js/WPN_AeRE_v14.1_117O_180411/lib/WDSCore.js"></SCRIPT>
<SCRIPT language=JavaScript type=text/javascript
src="https://www.checkmytrip.com/plnext/js/WPN_AeRE_v14.1_117O_180411/ui/PLTGWDSDefinitions.js"></SCRIPT>
<SCRIPT language=JavaScript type=text/javascript
src="https://www.checkmytrip.com/plnext/js/WPN_AeRE_v14.1_117O_180411/ui/hbp/Common/utils/json.js"></SCRIPT>
<SCRIPT language=JavaScript type=text/javascript>
<!--
function emailToAFriend() {
if (CONF.divTabsCmp) {
document.forms.emailToAFriend.TAB_TO_MAIL.value = CONF.divTabsCmp.id;
} else {
document.forms.emailToAFriend.TAB_TO_MAIL.value = "tripSum";
}
document.forms.emailToAFriend.TICKET_TO_MAIL.value = '';
document.forms.emailToAFriend.JSP_NAME_KEY.value = "SITE_JSP_STATE_RETRIEVED";
submitFormToNewPopUp(document.forms.emailToAFriend, 'popupEMail', 550, 520);
}
// -------------------------------------------------------------------------- \\
// Close every viewclose links of the ticket sections (except if there is
// Only one ticket)
// -------------------------------------------------------------------------- \\
function CONF_closeTicketViews() {
CONF.vcCMT('ticket1667015053_075-3759301129');
CONF.vcCMT('ticket1667015053_075-3759301130');
CONF.vcCMT('ticket3953872569_169-2300540130-31');
CONF.vcCMT('ticket3953872569_169-2300540132-33');
}
// -------------------------------------------------------------------------- \\
// CONF_pageOnLoad
// -------------------------------------------------------------------------- \\
function CONF_pageOnLoad() {
// Get the last tab displayed (in case of a backbrowser with eticket tab enabled only)
// and display it correctly
var backConfViewType = document.getElementById("backConfViewType");
var backConfViewTypeValue = "";
if (backConfViewType != null) {
backConfViewTypeValue = backConfViewType.value;
}
if (backConfViewTypeValue == "tripSum") {
CONF.tripSumTab();
} else if (backConfViewTypeValue == "eTicket") {
CONF.eticketTab();
} else if (backConfViewTypeValue == "eTicketWarning") {
CONF.eticketTabITRWarning();
} else {
if ("true" == "true") {
// not E-Mail case (in case of E-Mail, displayEticketTab is set to false
backConfViewType.value = "tripSum";
}
}
}
//-------------------------------------------------------------------------- \\
//CONF_init
//-------------------------------------------------------------------------- \\
function CONF_init() {
// Set the string for the link in view/close details
CONF.viewDetailsStr = "view details";
CONF.closeDetailsStr = "close details";
CONF.divTabsCmp = document.getElementById("tripSum");
// closes ticket views in the ITR part, to have a clear ITR tab display
CONF.closeTicketViews();
CONF.initialisation = 1;
}
// -------------------------------------------------------------------------- \\
// CONF_printTicket
// Print only the chosen eticket
// -------------------------------------------------------------------------- \\
function CONF_printTicket(ticketId) {
var styleTxt = "";
if (ticketId != 'ticket1667015053_075-3759301129') {
styleTxt = styleTxt + "div#ticket1667015053_075-3759301129div {display:none!important;}";
styleTxt = styleTxt + "div#sh_selectionTicket_ticket1667015053_075-3759301129 {display:none!important;}";
}
if (ticketId != 'ticket1667015053_075-3759301130') {
styleTxt = styleTxt + "div#ticket1667015053_075-3759301130div {display:none!important;}";
styleTxt = styleTxt + "div#sh_selectionTicket_ticket1667015053_075-3759301130 {display:none!important;}";
}
if (ticketId != 'ticket3953872569_169-2300540130-31') {
styleTxt = styleTxt + "div#ticket3953872569_169-2300540130-31div {display:none!important;}";
styleTxt = styleTxt + "div#sh_selectionTicket_ticket3953872569_169-2300540130-31 {display:none!important;}";
}
if (ticketId != 'ticket3953872569_169-2300540132-33') {
styleTxt = styleTxt + "div#ticket3953872569_169-2300540132-33div {display:none!important;}";
styleTxt = styleTxt + "div#sh_selectionTicket_ticket3953872569_169-2300540132-33 {display:none!important;}";
}
// We dont display passenger informations
styleTxt = styleTxt + "div#divTablePassenger {display:none!important;}";
styleTxt = styleTxt + "div#tablePassengerTitle {display:none!important;}";
// Add the style
this.addStyle("ticketPrintStyle", "print", styleTxt);
window.print();
// Remove the style after the print
// Works only for IE
if (WDSBrowser.ie) {
this.addStyle("ticketPrintStyle", "print", "");
}
}
// -------------------------------------------------------------------------- \\
// CONF_mailTicket
// Mail only the chosen eticket
// -------------------------------------------------------------------------- \\
function CONF_mailTicket(ticketId) {
document.forms.emailToAFriend.TAB_TO_MAIL.value = CONF.divTabsCmp.id;
document.forms.emailToAFriend.TICKET_TO_MAIL.value = ticketId;
document.forms.emailToAFriend.JSP_NAME_KEY.value = "SITE_JSP_STATE_RETRIEVED_ETICKET";
submitFormToNewPopUp(document.forms.emailToAFriend, 'popupEMail', 550, 520);
}
// -------------------------------------------------------------------------- \\
// CONF_checkCancelReservation
// -------------------------------------------------------------------------- \\
function CONF_checkCancelReservation() {
if (confirm("Are you sure you want to cancel your reservation?")) {
document.CONFCancelReservationForm.submit();
}
}
// -------------------------------------------------------------------------- \\
// CONF_checkCancelFlights
// -------------------------------------------------------------------------- \\
function CONF_checkCancelFlights() {
var msg;
msg = "Are you sure you want to delete all of your flights? Note that this will cancel the entire reservation.";
if (confirm(msg)) {
document.CONFCancelReservationForm.submit();
}
}
// -------------------------------------------------------------------------- \\
// PTR 1489503 : CONF_checkPendingFlights : allows to confirm the reservation
// if it is on hold and launches a pop up asking the user if he wants to confirm
// his reservation.
// -------------------------------------------------------------------------- \\
function CONF_checkPendingFlights() {
if (confirm("Are you sure you want to confirm your reservation?")) {
document.CONFPendingFlightsForm.submit();
}
}
// -------------------------------------------------------------------------- \\
// CR 1464840 : CONF_checkPayPendingFlights : allows to pay the reservation
// if it is on hold and launches a pop up asking the user if he wants to pay
// his reservation.
// -------------------------------------------------------------------------- \\
function CONF_checkPayPendingFlights() {
if (confirm("Are you sure you want to pay your reservation?")) {
document.CONFPayPendingFlightsForm.submit();
}
}
// -------------------------------------------------------------------------- \\
// PTR 2385272 : CONF_checkReconfirmFlights : allows to reconfirm flights
// -------------------------------------------------------------------------- \\
function CONF_checkReconfirmFlights() {
if (confirm("Are you sure you want to reconfirm yours flights?")) {
document.CONFReconfirmForm.submit();
}
}
// -------------------------------------------------------------------------- \\
// CR 1882880 : CONF_checkCancelCar : allow to cancel a car reservation
// -------------------------------------------------------------------------- \\
function CONF_checkCancelCar(itemId, showCancellationPopup) {
if (showCancellationPopup) {
this.displayCancellationPopup(itemId);
} else {
var msg;
msg = "Are you sure you want to cancel this car?";
if (confirm(msg)) {
WDSCommon.updateTag(document.CONFCancelCarForm, "ITEM_ID", itemId);
document.CONFCancelCarForm.submit();
}
}
}
function CONF_CancelSegmentOrEntirePnr(ITEM_ID, ConfirmMessage, onlyOneHotel) {
//Confirmation popup
this.m_yesNoJsWindow = new YesNoJsWindow();
var _i18n = {};
_i18n['Yes'] = "Yes";
_i18n['No'] = "No";
this.m_yesNoJsWindow.setI18n(_i18n);
//When only one hotel segment, cancel the whole PNR
if (onlyOneHotel) {
this.m_yesNoJsWindow.setJsOnYes(function() {
document.CONFCancelReservationForm.submit();
});
ConfirmMessage = "Are you sure you want to really cancel the entire PNR ?";
} else {
this.m_yesNoJsWindow.setJsOnYes(function() {
document.CONFRemoveHotelSegmentForm.submit();
});
document.CONFRemoveHotelSegmentForm.ITEM_ID.value = ITEM_ID;
}
this.m_yesNoJsWindow.setWidth("25%");
//Yes/No Js Window
this.m_yesNoJsWindow.setContent(ConfirmMessage);
this.m_yesNoJsWindow.open();
}
function CONF_AddRoom(ITEM_ID, ConfirmMessage, B_DATE, E_DATE, PROPERTY, COUNTRY_CODE, ACCESS_LEVEL, HOTEL_STATUS, CITY_NAME, CITY_CODE, LONGITUDE, LATITUDE) {
document.CONFAddRoomForm.B_DATE.value = B_DATE;
document.CONFAddRoomForm.E_DATE.value = E_DATE;
document.CONFAddRoomForm.PROPERTY.value = PROPERTY;
document.CONFAddRoomForm.COUNTRY_CODE.value = COUNTRY_CODE;
document.CONFAddRoomForm.ACCESS_LEVEL.value = ACCESS_LEVEL;
document.CONFAddRoomForm.LONGITUDE.value = LONGITUDE;
document.CONFAddRoomForm.LATITUDE.value = LATITUDE;
document.CONFAddRoomForm.HOT_PARAMS.value = "|sT-C|cI-" + CITY_NAME + "|cIC-" + CITY_CODE + "|cIA-D|cICt-" + COUNTRY_CODE + "|SCI||";
document.CONFAddRoomForm.submit();
}
function CONF_ChangeHotelReservation(ITEM_ID, ConfirmMessage, B_DATE, E_DATE, B_LOCATION, COUNTRY_CODE, CITY_CODE, CITY_NAME) {
//Confirmation popup
this.m_yesNoJsWindow = new YesNoJsWindow();
var _i18n = {};
_i18n['Yes'] = "Yes";
_i18n['No'] = "No";
this.m_yesNoJsWindow.setI18n(_i18n);
this.m_yesNoJsWindow.setJsOnYes(function() {
document.CONFChangeHotelReservationForm.submit();
});
this.m_yesNoJsWindow.setWidth("25%");
document.CONFChangeHotelReservationForm.ITEM_ID.value = ITEM_ID;
document.CONFChangeHotelReservationForm.B_DATE.value = B_DATE;
document.CONFChangeHotelReservationForm.E_DATE.value = E_DATE;
document.CONFChangeHotelReservationForm.B_LOCATION.value = B_LOCATION;
document.CONFChangeHotelReservationForm.COUNTRY_CODE.value = COUNTRY_CODE;
document.CONFChangeHotelReservationForm.HOT_PARAMS.value = "|sT-C|cI-" + CITY_NAME + "|cIC-" + CITY_CODE + "|cIA-D|cICt-" + COUNTRY_CODE + "|SCI||";
//Yes/No Js Window
this.m_yesNoJsWindow.setContent(ConfirmMessage);
this.m_yesNoJsWindow.open();
}
function CONF_ChangeRoomReservation(ITEM_ID, ConfirmMessage, B_DATE, E_DATE, PROPERTY, COUNTRY_CODE, ACCESS_LEVEL, HOTEL_STATUS, CITY_NAME, CITY_CODE, LONGITUDE, LATITUDE) {
//Confirmation popup
this.m_yesNoJsWindow = new YesNoJsWindow();
var _i18n = {};
_i18n['Yes'] = "Yes";
_i18n['No'] = "No";
this.m_yesNoJsWindow.setI18n(_i18n);
this.m_yesNoJsWindow.setJsOnYes(function() {
document.CONFChangeRoomReservationForm.submit();
});
this.m_yesNoJsWindow.setWidth("25%");
document.CONFChangeRoomReservationForm.ITEM_ID.value = ITEM_ID;
document.CONFChangeRoomReservationForm.B_DATE.value = B_DATE;
document.CONFChangeRoomReservationForm.E_DATE.value = E_DATE;
document.CONFChangeRoomReservationForm.PROPERTY.value = PROPERTY;
document.CONFChangeRoomReservationForm.COUNTRY_CODE.value = COUNTRY_CODE;
document.CONFChangeRoomReservationForm.ACCESS_LEVEL.value = ACCESS_LEVEL;
document.CONFChangeRoomReservationForm.LONGITUDE.value = LONGITUDE;
document.CONFChangeRoomReservationForm.LATITUDE.value = LATITUDE;
document.CONFChangeRoomReservationForm.HOT_PARAMS.value = "|sT-C|cI-" + CITY_NAME + "|cIC-" + CITY_CODE + "|cIA-D|cICt-" + COUNTRY_CODE + "|SCI||";
//Yes/No Js Window
this.m_yesNoJsWindow.setContent(ConfirmMessage);
this.m_yesNoJsWindow.open();
}
/**
* create a popup that will be used to confirm the cancellation of a car segment
*/
function CONF_initCancellationPopup() {
c.require('uic.dialog.SimpleDialog');
this.cancellationPopup = new uic.dialog.SimpleDialog({
isCentered: true,
isModal: true,
isAutoResized: true,
width: 370,
height: 130,
isClosable: true,
title: "Cancel this car?",
content: "",
id: "carCancellationPopup"
});
}
function CONF_initMap() {
this.map = $("confMap", {_section: "confMapSection"}); // undefined if the map is not generated
this.mapStatus = "notLoaded";
if (this.map) {
// the map is generated hidden, it must be set to visible
// however, it must be delayed otherwise it won't work
// (some existing scripts seems to take some time at load time?)
setTimeout("CONF.initializeMap()", 2000);
}
}
//-->
</SCRIPT>
<SCRIPT language=JavaScript type=text/javascript
src="https://www.checkmytrip.com/plnext/js/WPN_AeRE_v14.1_117O_180411/ui/CONF.js"></SCRIPT>
<SCRIPT language=JavaScript type=text/javascript
src="https://www.checkmytrip.com/plnext/js/WPN_AeRE_v14.1_117O_180411/ui/script.js"></SCRIPT>
<SCRIPT language=JavaScript type=text/javascript
src="https://www.checkmytrip.com/plnext/js/WPN_AeRE_v14.1_117O_180411/ui/ExtraInfoPopUp.js"></SCRIPT>
<SCRIPT language=JavaScript type=text/javascript
src="https://www.checkmytrip.com/plnext/js/WPN_AeRE_v14.1_117O_180411/ui/FarefamilyDescriptionPopUp.js"></SCRIPT>
<SCRIPT language=JavaScript type=text/javascript
src="https://www.checkmytrip.com/plnext/js/WPN_AeRE_v14.1_117O_180411/ui/dw_tooltip.js"></SCRIPT>
<SCRIPT language=JavaScript type=text/javascript
src="https://www.checkmytrip.com/plnext/js/WPN_AeRE_v14.1_117O_180411/ui/dw_event.js"></SCRIPT>
<SCRIPT language=JavaScript type=text/javascript
src="https://www.checkmytrip.com/plnext/js/WPN_AeRE_v14.1_117O_180411/ui/dw_viewport.js"></SCRIPT>
<SCRIPT language=JavaScript type=text/javascript
src="https://www.checkmytrip.com/plnext/js/WPN_AeRE_v14.1_117O_180411/ui/NbDayBetweenDepAndArrDates.js"></SCRIPT>
<SCRIPT language=JavaScript type=text/javascript
src="https://www.checkmytrip.com/plnext/js/WPN_AeRE_v14.1_117O_180411/ui/Tips.js"></SCRIPT>
<SCRIPT language=JavaScript type=text/javascript
src="https://www.checkmytrip.com/plnext/js/WPN_AeRE_v14.1_117O_180411/ui/DOM.js"></SCRIPT>
<SCRIPT language=javascript type=text/javascript>
<!--
var LOCK_CHECK_ENTER = false;
Netscape = (navigator.appName.substring(0,3) == "Net");
function checkEnter(event) {
var code = 0;
if(Netscape) {
code = event.which;
} else {
code = window.event.keyCode;
}
if (code == 13) {
var result = false;
return result;
}
}
document.onkeypress = checkEnter;
-->
</SCRIPT>
<SCRIPT language=JavaScript type=text/javascript>
<!--
function nameTheWindow() {
if (!window.opener && window.name == '') {
window.name = 'mainplnext';
}
}
function sellingPlatformLock() {
}
//-->
</SCRIPT>
<STYLE type=text/css media=screen>#massiveGoodSwf {
VISIBILITY: hidden
}
</STYLE>
</HEAD>
<BODY id=cmtr onunload="" onload="nameTheWindow(); javascript:CONF.pageOnLoad();javascript:Tooltip.init();; ">
<DIV style="DISPLAY: none" id=customDHTML>
<CENTER>
<FORM name=custom>
<TABLE border=1>
<TBODY>
<TR>
<TD><B>segment information 0:</B></TD>
<TD></TD>
</TR>
<TR>
<TD><B>segment 0:</B></TD>
<TD>departure <INPUT id=departureCode_0_0 value=DUS name=departureCode_0_0> <BR>departure city code <INPUT
id=departureCityCode_0_0 value=DUS name=departureCityCode_0_0> <BR>departure city <INPUT
id=departureCity_0_0 value=Duesseldorf name=departureCity_0_0> <BR>departure country code <INPUT
id=departureCountryCode_0_0 value=DE name=departureCountryCode_0_0> <BR>arrival <INPUT id=arrivalCode_0_0
value=MAD
name=arrivalCode_0_0>
<BR>arrival city code <INPUT id=arrivalCityCode_0_0 value=MAD name=arrivalCityCode_0_0> <BR>arrival city <INPUT
id=arrivalCity_0_0 value=Madrid name=arrivalCity_0_0> <BR>arrival country code <INPUT
id=arrivalCountryCode_0_0 value=ES name=arrivalCountryCode_0_0> <BR>departure date <INPUT
id=departureDate_0_0 value="Sat May 21 07:50:00 GMT 2011" name=departureDate_0_0> <BR>arrival date
<INPUT id=arrivalDate_0_0 value="Sat May 21 10:20:00 GMT 2011" name=arrivalDate_0_0> <BR>flightNumber <INPUT
id=flightNumber_0_0 value=3597 name=flightNumber_0_0> <BR>airline Name <INPUT id=airlineName_0_0
value=Iberia
name=airlineName_0_0> <BR>airline
Code <INPUT id=airlineCode_0_0 value=IB name=airlineCode_0_0> <BR>fare basis adult(s) <INPUT
id=FARE_BASIS_0_0_ADT value=OSXOFDE name=FARE_BASIS_0_0_ADT> <BR></TD>
</TR>
fare Family Name <INPUT id=fareFamilyName_0 name=fareFamilyName_0>
<TR>
<TD><B>segment information 1:</B></TD>
<TD></TD>
</TR>
<TR>
<TD><B>segment 0:</B></TD>
<TD>departure <INPUT id=departureCode_1_0 value=DUS name=departureCode_1_0> <BR>departure city code <INPUT
id=departureCityCode_1_0 value=DUS name=departureCityCode_1_0> <BR>departure city <INPUT
id=departureCity_1_0 value=Duesseldorf name=departureCity_1_0> <BR>departure country code <INPUT
id=departureCountryCode_1_0 value=DE name=departureCountryCode_1_0> <BR>arrival <INPUT id=arrivalCode_1_0
value=MAD
name=arrivalCode_1_0>
<BR>arrival city code <INPUT id=arrivalCityCode_1_0 value=MAD name=arrivalCityCode_1_0> <BR>arrival city <INPUT
id=arrivalCity_1_0 value=Madrid name=arrivalCity_1_0> <BR>arrival country code <INPUT
id=arrivalCountryCode_1_0 value=ES name=arrivalCountryCode_1_0> <BR>departure date <INPUT
id=departureDate_1_0 value="Sat May 21 07:50:00 GMT 2011" name=departureDate_1_0> <BR>arrival date
<INPUT id=arrivalDate_1_0 value="Sat May 21 10:20:00 GMT 2011" name=arrivalDate_1_0> <BR>flightNumber <INPUT
id=flightNumber_1_0 value=8055 name=flightNumber_1_0> <BR>airline Name <INPUT id=airlineName_1_0
value=Iberia
name=airlineName_1_0> <BR>airline
Code <INPUT id=airlineCode_1_0 value=IB name=airlineCode_1_0> <BR></TD>
</TR>
<TR>
<TD><B>segment 1:</B></TD>
<TD>departure <INPUT id=departureCode_1_1 value=MAD name=departureCode_1_1> <BR>departure city code <INPUT
id=departureCityCode_1_1 value=MAD name=departureCityCode_1_1> <BR>departure city <INPUT
id=departureCity_1_1 value=Madrid name=departureCity_1_1> <BR>departure country code <INPUT
id=departureCountryCode_1_1 value=ES name=departureCountryCode_1_1> <BR>arrival <INPUT id=arrivalCode_1_1
value=GIG
name=arrivalCode_1_1>
<BR>arrival city code <INPUT id=arrivalCityCode_1_1 value=RIO name=arrivalCityCode_1_1> <BR>arrival city <INPUT
id=arrivalCity_1_1 value="Rio De Janeiro" name=arrivalCity_1_1> <BR>arrival country code <INPUT
id=arrivalCountryCode_1_1 value=BR name=arrivalCountryCode_1_1> <BR>departure date <INPUT
id=departureDate_1_1 value="Sat May 21 12:25:00 GMT 2011" name=departureDate_1_1> <BR>arrival date
<INPUT id=arrivalDate_1_1 value="Sat May 21 17:55:00 GMT 2011" name=arrivalDate_1_1> <BR>flightNumber <INPUT
id=flightNumber_1_1 value=6025 name=flightNumber_1_1> <BR>airline Name <INPUT id=airlineName_1_1
value=Iberia
name=airlineName_1_1> <BR>airline
Code <INPUT id=airlineCode_1_1 value=IB name=airlineCode_1_1> <BR>fare basis adult(s) <INPUT
id=FARE_BASIS_1_1_ADT value=OSXOFDE name=FARE_BASIS_1_1_ADT> <BR></TD>
</TR>
fare Family Name <INPUT id=fareFamilyName_1 name=fareFamilyName_1>
<TR>
<TD><B>segment information 2:</B></TD>
<TD></TD>
</TR>
<TR>
<TD><B>segment 0:</B></TD>
<TD>departure <INPUT id=departureCode_2_0 value=GIG name=departureCode_2_0> <BR>departure city code <INPUT
id=departureCityCode_2_0 value=RIO name=departureCityCode_2_0> <BR>departure city <INPUT
id=departureCity_2_0 value="Rio De Janeiro" name=departureCity_2_0> <BR>departure country code <INPUT
id=departureCountryCode_2_0 value=BR name=departureCountryCode_2_0> <BR>arrival <INPUT id=arrivalCode_2_0
value=IGU
name=arrivalCode_2_0>
<BR>arrival city code <INPUT id=arrivalCityCode_2_0 value=IGU name=arrivalCityCode_2_0> <BR>arrival city <INPUT
id=arrivalCity_2_0 value="Iguassu Falls" name=arrivalCity_2_0> <BR>arrival country code <INPUT
id=arrivalCountryCode_2_0 value=BR name=arrivalCountryCode_2_0> <BR>departure date <INPUT
id=departureDate_2_0 value="Tue May 24 10:10:00 GMT 2011" name=departureDate_2_0> <BR>arrival date
<INPUT id=arrivalDate_2_0 value="Tue May 24 13:10:00 GMT 2011" name=arrivalDate_2_0> <BR>flightNumber <INPUT
id=flightNumber_2_0 value=1850 name=flightNumber_2_0> <BR>airline Name <INPUT id=airlineName_2_0
value="GOL VRG Linhas Aereas"
name=airlineName_2_0> <BR>airline
Code <INPUT id=airlineCode_2_0 value=G3 name=airlineCode_2_0> <BR>fare basis adult(s) <INPUT
id=FARE_BASIS_2_0_ADT value=BBAP30 name=FARE_BASIS_2_0_ADT> <BR></TD>
</TR>
fare Family Name <INPUT id=fareFamilyName_2 name=fareFamilyName_2>
<TR>
<TD><B>segment information 3:</B></TD>
<TD></TD>
</TR>
<TR>
<TD><B>segment 0:</B></TD>
<TD>departure <INPUT id=departureCode_3_0 value=GIG name=departureCode_3_0> <BR>departure city code <INPUT
id=departureCityCode_3_0 value=RIO name=departureCityCode_3_0> <BR>departure city <INPUT
id=departureCity_3_0 value="Rio De Janeiro" name=departureCity_3_0> <BR>departure country code <INPUT
id=departureCountryCode_3_0 value=BR name=departureCountryCode_3_0> <BR>arrival <INPUT id=arrivalCode_3_0
value=CWB
name=arrivalCode_3_0>
<BR>arrival city code <INPUT id=arrivalCityCode_3_0 value=CWB name=arrivalCityCode_3_0> <BR>arrival city <INPUT
id=arrivalCity_3_0 value=Curitiba name=arrivalCity_3_0> <BR>arrival country code <INPUT
id=arrivalCountryCode_3_0 value=BR name=arrivalCountryCode_3_0> <BR>departure date <INPUT
id=departureDate_3_0 value="Tue May 24 07:30:00 GMT 2011" name=departureDate_3_0> <BR>arrival date
<INPUT id=arrivalDate_3_0 value="Tue May 24 09:00:00 GMT 2011" name=arrivalDate_3_0> <BR>flightNumber <INPUT
id=flightNumber_3_0 value=1620 name=flightNumber_3_0> <BR>airline Name <INPUT id=airlineName_3_0
value="GOL VRG Linhas Aereas"
name=airlineName_3_0> <BR>airline
Code <INPUT id=airlineCode_3_0 value=G3 name=airlineCode_3_0> <BR></TD>
</TR>
<TR>
<TD><B>segment 1:</B></TD>
<TD>departure <INPUT id=departureCode_3_1 value=CWB name=departureCode_3_1> <BR>departure city code <INPUT
id=departureCityCode_3_1 value=CWB name=departureCityCode_3_1> <BR>departure city <INPUT
id=departureCity_3_1 value=Curitiba name=departureCity_3_1> <BR>departure country code <INPUT
id=departureCountryCode_3_1 value=BR name=departureCountryCode_3_1> <BR>arrival <INPUT id=arrivalCode_3_1
value=IGU
name=arrivalCode_3_1>
<BR>arrival city code <INPUT id=arrivalCityCode_3_1 value=IGU name=arrivalCityCode_3_1> <BR>arrival city <INPUT
id=arrivalCity_3_1 value="Iguassu Falls" name=arrivalCity_3_1> <BR>arrival country code <INPUT
id=arrivalCountryCode_3_1 value=BR name=arrivalCountryCode_3_1> <BR>departure date <INPUT
id=departureDate_3_1 value="Tue May 24 12:07:00 GMT 2011" name=departureDate_3_1> <BR>arrival date
<INPUT id=arrivalDate_3_1 value="Tue May 24 13:10:00 GMT 2011" name=arrivalDate_3_1> <BR>flightNumber <INPUT
id=flightNumber_3_1 value=1850 name=flightNumber_3_1> <BR>airline Name <INPUT id=airlineName_3_1
value="GOL VRG Linhas Aereas"
name=airlineName_3_1> <BR>airline
Code <INPUT id=airlineCode_3_1 value=G3 name=airlineCode_3_1> <BR></TD>
</TR>
fare Family Name <INPUT id=fareFamilyName_3 name=fareFamilyName_3>
<TR>
<TD><B>segment information 4:</B></TD>
<TD></TD>
</TR>
<TR>
<TD><B>segment 0:</B></TD>
<TD>departure <INPUT id=departureCode_4_0 value=IGU name=departureCode_4_0> <BR>departure city code <INPUT
id=departureCityCode_4_0 value=IGU name=departureCityCode_4_0> <BR>departure city <INPUT
id=departureCity_4_0 value="Iguassu Falls" name=departureCity_4_0> <BR>departure country code <INPUT
id=departureCountryCode_4_0 value=BR name=departureCountryCode_4_0> <BR>arrival <INPUT id=arrivalCode_4_0
value=CWB
name=arrivalCode_4_0>
<BR>arrival city code <INPUT id=arrivalCityCode_4_0 value=CWB name=arrivalCityCode_4_0> <BR>arrival city <INPUT
id=arrivalCity_4_0 value=Curitiba name=arrivalCity_4_0> <BR>arrival country code <INPUT
id=arrivalCountryCode_4_0 value=BR name=arrivalCountryCode_4_0> <BR>departure date <INPUT
id=departureDate_4_0 value="Thu May 26 06:00:00 GMT 2011" name=departureDate_4_0> <BR>arrival date
<INPUT id=arrivalDate_4_0 value="Thu May 26 06:57:00 GMT 2011" name=arrivalDate_4_0> <BR>flightNumber <INPUT
id=flightNumber_4_0 value=1630 name=flightNumber_4_0> <BR>airline Name <INPUT id=airlineName_4_0
value="GOL VRG Linhas Aereas"
name=airlineName_4_0> <BR>airline
Code <INPUT id=airlineCode_4_0 value=G3 name=airlineCode_4_0> <BR>fare basis adult(s) <INPUT
id=FARE_BASIS_4_0_ADT value=BBAP30 name=FARE_BASIS_4_0_ADT> <BR></TD>
</TR>
<TR>
<TD><B>segment 1:</B></TD>
<TD>departure <INPUT id=departureCode_4_1 value=CWB name=departureCode_4_1> <BR>departure city code <INPUT
id=departureCityCode_4_1 value=CWB name=departureCityCode_4_1> <BR>departure city <INPUT
id=departureCity_4_1 value=Curitiba name=departureCity_4_1> <BR>departure country code <INPUT
id=departureCountryCode_4_1 value=BR name=departureCountryCode_4_1> <BR>arrival <INPUT id=arrivalCode_4_1
value=CGB
name=arrivalCode_4_1>
<BR>arrival city code <INPUT id=arrivalCityCode_4_1 value=CGB name=arrivalCityCode_4_1> <BR>arrival city <INPUT
id=arrivalCity_4_1 value=Cuiaba name=arrivalCity_4_1> <BR>arrival country code <INPUT
id=arrivalCountryCode_4_1 value=BR name=arrivalCountryCode_4_1> <BR>departure date <INPUT
id=departureDate_4_1 value="Thu May 26 09:30:00 GMT 2011" name=departureDate_4_1> <BR>arrival date
<INPUT id=arrivalDate_4_1 value="Thu May 26 11:40:00 GMT 2011" name=arrivalDate_4_1> <BR>flightNumber <INPUT
id=flightNumber_4_1 value=1725 name=flightNumber_4_1> <BR>airline Name <INPUT id=airlineName_4_1
value="GOL VRG Linhas Aereas"
name=airlineName_4_1> <BR>airline
Code <INPUT id=airlineCode_4_1 value=G3 name=airlineCode_4_1> <BR>fare basis adult(s) <INPUT
id=FARE_BASIS_4_1_ADT value=BBAP30 name=FARE_BASIS_4_1_ADT> <BR></TD>
</TR>
fare Family Name <INPUT id=fareFamilyName_4 name=fareFamilyName_4>
<TR>
<TD><B>segment information 5:</B></TD>
<TD></TD>
</TR>
<TR>
<TD><B>segment 0:</B></TD>
<TD>departure <INPUT id=departureCode_5_0 value=CGB name=departureCode_5_0> <BR>departure city code <INPUT
id=departureCityCode_5_0 value=CGB name=departureCityCode_5_0> <BR>departure city <INPUT
id=departureCity_5_0 value=Cuiaba name=departureCity_5_0> <BR>departure country code <INPUT
id=departureCountryCode_5_0 value=BR name=departureCountryCode_5_0> <BR>arrival <INPUT id=arrivalCode_5_0
value=MAO
name=arrivalCode_5_0>
<BR>arrival city code <INPUT id=arrivalCityCode_5_0 value=MAO name=arrivalCityCode_5_0> <BR>arrival city <INPUT
id=arrivalCity_5_0 value=Manaus name=arrivalCity_5_0> <BR>arrival country code <INPUT
id=arrivalCountryCode_5_0 value=BR name=arrivalCountryCode_5_0> <BR>departure date <INPUT
id=departureDate_5_0 value="Mon May 30 12:10:00 GMT 2011" name=departureDate_5_0> <BR>arrival date
<INPUT id=arrivalDate_5_0 value="Mon May 30 15:50:00 GMT 2011" name=arrivalDate_5_0> <BR>flightNumber <INPUT
id=flightNumber_5_0 value=1725 name=flightNumber_5_0> <BR>airline Name <INPUT id=airlineName_5_0
value="GOL VRG Linhas Aereas"
name=airlineName_5_0> <BR>airline
Code <INPUT id=airlineCode_5_0 value=G3 name=airlineCode_5_0> <BR>fare basis adult(s) <INPUT
id=FARE_BASIS_5_0_ADT value=BBAP30 name=FARE_BASIS_5_0_ADT> <BR></TD>
</TR>
fare Family Name <INPUT id=fareFamilyName_5 name=fareFamilyName_5>
<TR>
<TD><B>segment information 6:</B></TD>
<TD></TD>
</TR>
<TR>
<TD><B>segment 0:</B></TD>
<TD>departure <INPUT id=departureCode_6_0 value=MAO name=departureCode_6_0> <BR>departure city code <INPUT
id=departureCityCode_6_0 value=MAO name=departureCityCode_6_0> <BR>departure city <INPUT
id=departureCity_6_0 value=Manaus name=departureCity_6_0> <BR>departure country code <INPUT
id=departureCountryCode_6_0 value=BR name=departureCountryCode_6_0> <BR>arrival <INPUT id=arrivalCode_6_0
value=BSB
name=arrivalCode_6_0>
<BR>arrival city code <INPUT id=arrivalCityCode_6_0 value=BSB name=arrivalCityCode_6_0> <BR>arrival city <INPUT
id=arrivalCity_6_0 value=Brasilia name=arrivalCity_6_0> <BR>arrival country code <INPUT
id=arrivalCountryCode_6_0 value=BR name=arrivalCountryCode_6_0> <BR>departure date <INPUT
id=departureDate_6_0 value="Fri Jun 03 17:00:00 GMT 2011" name=departureDate_6_0> <BR>arrival date
<INPUT id=arrivalDate_6_0 value="Fri Jun 03 20:50:00 GMT 2011" name=arrivalDate_6_0> <BR>flightNumber <INPUT
id=flightNumber_6_0 value=1631 name=flightNumber_6_0> <BR>airline Name <INPUT id=airlineName_6_0
value="GOL VRG Linhas Aereas"
name=airlineName_6_0> <BR>airline
Code <INPUT id=airlineCode_6_0 value=G3 name=airlineCode_6_0> <BR>fare basis adult(s) <INPUT
id=FARE_BASIS_6_0_ADT value=BBAP30 name=FARE_BASIS_6_0_ADT> <BR></TD>
</TR>
<TR>
<TD><B>segment 1:</B></TD>
<TD>departure <INPUT id=departureCode_6_1 value=BSB name=departureCode_6_1> <BR>departure city code <INPUT
id=departureCityCode_6_1 value=BSB name=departureCityCode_6_1> <BR>departure city <INPUT
id=departureCity_6_1 value=Brasilia name=departureCity_6_1> <BR>departure country code <INPUT
id=departureCountryCode_6_1 value=BR name=departureCountryCode_6_1> <BR>arrival <INPUT id=arrivalCode_6_1
value=SSA
name=arrivalCode_6_1>
<BR>arrival city code <INPUT id=arrivalCityCode_6_1 value=SSA name=arrivalCityCode_6_1> <BR>arrival city <INPUT
id=arrivalCity_6_1 value=Salvador name=arrivalCity_6_1> <BR>arrival country code <INPUT
id=arrivalCountryCode_6_1 value=BR name=arrivalCountryCode_6_1> <BR>departure date <INPUT
id=departureDate_6_1 value="Fri Jun 03 22:00:00 GMT 2011" name=departureDate_6_1> <BR>arrival date
<INPUT id=arrivalDate_6_1 value="Fri Jun 03 23:50:00 GMT 2011" name=arrivalDate_6_1> <BR>flightNumber <INPUT
id=flightNumber_6_1 value=1714 name=flightNumber_6_1> <BR>airline Name <INPUT id=airlineName_6_1
value="GOL VRG Linhas Aereas"
name=airlineName_6_1> <BR>airline
Code <INPUT id=airlineCode_6_1 value=G3 name=airlineCode_6_1> <BR>fare basis adult(s) <INPUT
id=FARE_BASIS_6_1_ADT value=BBAP30 name=FARE_BASIS_6_1_ADT> <BR></TD>
</TR>
fare Family Name <INPUT id=fareFamilyName_6 name=fareFamilyName_6>
<TR>
<TD><B>segment information 7:</B></TD>
<TD></TD>
</TR>
<TR>
<TD><B>segment 0:</B></TD>
<TD>departure <INPUT id=departureCode_7_0 value=SSA name=departureCode_7_0> <BR>departure city code <INPUT
id=departureCityCode_7_0 value=SSA name=departureCityCode_7_0> <BR>departure city <INPUT
id=departureCity_7_0 value=Salvador name=departureCity_7_0> <BR>departure country code <INPUT
id=departureCountryCode_7_0 value=BR name=departureCountryCode_7_0> <BR>arrival <INPUT id=arrivalCode_7_0
value=GIG
name=arrivalCode_7_0>
<BR>arrival city code <INPUT id=arrivalCityCode_7_0 value=RIO name=arrivalCityCode_7_0> <BR>arrival city <INPUT
id=arrivalCity_7_0 value="Rio De Janeiro" name=arrivalCity_7_0> <BR>arrival country code <INPUT
id=arrivalCountryCode_7_0 value=BR name=arrivalCountryCode_7_0> <BR>departure date <INPUT
id=departureDate_7_0 value="Thu Jun 09 13:50:00 GMT 2011" name=departureDate_7_0> <BR>arrival date
<INPUT id=arrivalDate_7_0 value="Thu Jun 09 16:00:00 GMT 2011" name=arrivalDate_7_0> <BR>flightNumber <INPUT
id=flightNumber_7_0 value=1394 name=flightNumber_7_0> <BR>airline Name <INPUT id=airlineName_7_0
value="GOL VRG Linhas Aereas"
name=airlineName_7_0> <BR>airline
Code <INPUT id=airlineCode_7_0 value=G3 name=airlineCode_7_0> <BR></TD>
</TR>
<TR>
<TD><B>segment 1:</B></TD>
<TD>departure <INPUT id=departureCode_7_1 value=GIG name=departureCode_7_1> <BR>departure city code <INPUT
id=departureCityCode_7_1 value=RIO name=departureCityCode_7_1> <BR>departure city <INPUT
id=departureCity_7_1 value="Rio De Janeiro" name=departureCity_7_1> <BR>departure country code <INPUT
id=departureCountryCode_7_1 value=BR name=departureCountryCode_7_1> <BR>arrival <INPUT id=arrivalCode_7_1
value=MAD
name=arrivalCode_7_1>
<BR>arrival city code <INPUT id=arrivalCityCode_7_1 value=MAD name=arrivalCityCode_7_1> <BR>arrival city <INPUT
id=arrivalCity_7_1 value=Madrid name=arrivalCity_7_1> <BR>arrival country code <INPUT
id=arrivalCountryCode_7_1 value=ES name=arrivalCountryCode_7_1> <BR>departure date <INPUT
id=departureDate_7_1 value="Thu Jun 09 19:20:00 GMT 2011" name=departureDate_7_1> <BR>arrival date
<INPUT id=arrivalDate_7_1 value="Fri Jun 10 10:15:00 GMT 2011" name=arrivalDate_7_1> <BR>flightNumber <INPUT
id=flightNumber_7_1 value=6024 name=flightNumber_7_1> <BR>airline Name <INPUT id=airlineName_7_1
value=Iberia
name=airlineName_7_1> <BR>airline
Code <INPUT id=airlineCode_7_1 value=IB name=airlineCode_7_1> <BR>fare basis adult(s) <INPUT
id=FARE_BASIS_7_1_ADT value=OSXOFDE name=FARE_BASIS_7_1_ADT> <BR></TD>
</TR>
<TR>
<TD><B>segment 2:</B></TD>
<TD>departure <INPUT id=departureCode_7_2 value=MAD name=departureCode_7_2> <BR>departure city code <INPUT
id=departureCityCode_7_2 value=MAD name=departureCityCode_7_2> <BR>departure city <INPUT
id=departureCity_7_2 value=Madrid name=departureCity_7_2> <BR>departure country code <INPUT
id=departureCountryCode_7_2 value=ES name=departureCountryCode_7_2> <BR>arrival <INPUT id=arrivalCode_7_2
value=DUS
name=arrivalCode_7_2>
<BR>arrival city code <INPUT id=arrivalCityCode_7_2 value=DUS name=arrivalCityCode_7_2> <BR>arrival city <INPUT
id=arrivalCity_7_2 value=Duesseldorf name=arrivalCity_7_2> <BR>arrival country code <INPUT
id=arrivalCountryCode_7_2 value=DE name=arrivalCountryCode_7_2> <BR>departure date <INPUT
id=departureDate_7_2 value="Fri Jun 10 15:50:00 GMT 2011" name=departureDate_7_2> <BR>arrival date
<INPUT id=arrivalDate_7_2 value="Fri Jun 10 18:20:00 GMT 2011" name=arrivalDate_7_2> <BR>flightNumber <INPUT
id=flightNumber_7_2 value=3522 name=flightNumber_7_2> <BR>airline Name <INPUT id=airlineName_7_2
value=Iberia
name=airlineName_7_2> <BR>airline
Code <INPUT id=airlineCode_7_2 value=IB name=airlineCode_7_2> <BR>fare basis adult(s) <INPUT
id=FARE_BASIS_7_2_ADT value=OSXOFDE name=FARE_BASIS_7_2_ADT> <BR></TD>
</TR>
fare Family Name <INPUT id=fareFamilyName_7 name=fareFamilyName_7>
<TR>
<TD>Number of Traveller :</TD>
<TD><INPUT id=nbTrav value=2 name=nbTrav></TD>
</TR>
<TR>
<TD>Cabin :</TD>
<TD><INPUT id=cabin name=cabin></TD>
</TR>
<TR>
<TD>Language :</TD>
<TD><INPUT id=language value=GB name=language></TD>
</TR>
<TR>
<TD>Office Id :</TD>
<TD><INPUT id=officeId value=NCE1A0RTI name=officeId></TD>
</TR>
<TR>
<TD>Initial Office Id :</TD>
<TD><INPUT id=initialOfficeId value=FLNB2212M name=initialOfficeId></TD>
</TR>
<TR>
<TD>Currency :</TD>
<TD><INPUT id=currency name=currency></TD>
</TR>
<TR>
<TD>Total Price :</TD>
<TD><INPUT id=totalPrice name=totalPrice></TD>
</TR>
<TR>
<TD><B>PNR information:</B></TD>
<TD></TD>
</TR>
<TR>
<TD>pnr :</TD>
<TD><INPUT id=pnrNbr value=4OBHHJ name=pnrNbr></TD>
</TR>
<TR>
<TD>airline record :</TD>
<TD><INPUT id=airLineConfNbr value=Iberia:MPQCF name=airLineConfNbr><INPUT id=airLineConfNbr
value="GOL VRG Linhas Aereas:H82D8M"
name=airLineConfNbr><INPUT
id=airLineConfNbr value="GOL VRG Linhas Aereas:T6VRJF" name=airLineConfNbr></TD>
</TR>
<TR>
<TD>pnr ticketing method :</TD>
<TD><INPUT id=pnrTicketingMethod value=ET name=pnrTicketingMethod></TD>
</TR>
<TR>
<TD>pnr Cabin :</TD>
<TD><INPUT id=pnrCabin value=R name=pnrCabin></TD>
</TR>
<TR>
<TD>gds :</TD>
<TD><INPUT id=pnrGDS value=1A name=pnrGDS></TD>
</TR>
<TR>
<TD>pnr creation Date :</TD>
<TD><INPUT id=pnrCreationDate value="Wed Jan 19 11:05:00 GMT 2011" name=pnrCreationDate></TD>
</TR>
<TR>
<TD>pnr transaction Date :</TD>
<TD><INPUT id=pnrEndTransactionDate value="Wed Apr 20 15:22:00 GMT 2011" name=pnrEndTransactionDate></TD>
</TR>
<TR>
<TD>pnr last modification Date :</TD>
<TD><INPUT id=pnrLastModifDate name=pnrLastModifDate></TD>
</TR>
<TR>
<TD><B>traveller information:</B></TD>
<TD></TD>
</TR>
<TR>
<TD>First name :</TD>
<TD><INPUT id=primaryTravellerFirstName value=Carsten name=primaryTravellerFirstName></TD>
</TR>
<TR>
<TD>Last name :</TD>
<TD><INPUT id=primaryTravellerLastName value=Briem name=primaryTravellerLastName></TD>
</TR>
<TR>
<TD>Pax type :</TD>
<TD><INPUT id=primaryTravellerPaxType value=ADT name=primaryTravellerPaxType></TD>
</TR>
<TR>
<TD>passport country code :</TD>
<TD><INPUT id=primaryTravellerPassportCountryCode name=primaryTravellerPassportCountryCode></TD>
</TR>
<TR>
<TD>passport number :</TD>
<TD><INPUT id=primaryTravellerPassportNumber name=primaryTravellerPassportNumber></TD>
</TR>
<TR>
<TD>email 1 :</TD>
<TD><INPUT id=primaryTravellerEmail1 name=primaryTravellerEmail1></TD>
</TR>
<TR>
<TD>email 2 :</TD>
<TD><INPUT id=primaryTravellerEmail2 name=primaryTravellerEmail2></TD>
</TR>
<TR>
<TD>email 3 :</TD>
<TD><INPUT id=primaryTravellerEmail3 name=primaryTravellerEmail3></TD>
</TR>
<TR>
<TD>Home phone :</TD>
<TD><INPUT id=primaryTravellerHomePhone1 name=primaryTravellerHomePhone1></TD>
</TR>
<TR>
<TD>Mobile phone :</TD>
<TD><INPUT id=primaryTravellerMobilePhone1 name=primaryTravellerMobilePhone1></TD>
</TR>
<TR>
<TD>Business phone :</TD>
<TD><INPUT id=primaryTravellerBusinessPhone1 name=primaryTravellerBusinessPhone1></TD>
</TR>
<TR>
<TD>Fax :</TD>
<TD><INPUT id=primaryTravellerFax1 name=primaryTravellerFax1></TD>
</TR>
<TR>
<TD>Other :</TD>
<TD><INPUT id=primaryTravellerOtherPhone1 name=primaryTravellerOtherPhone1></TD>
</TR>
<TR>
<TD>Pager :</TD>
<TD><INPUT id=primaryTravellerPager1 name=primaryTravellerPager1></TD>
</TR>
<TR>
<TD>emergency contact name :</TD>
<TD><INPUT id=primaryTravellerEmergencyName name=primaryTravellerEmergencyName></TD>
</TR>
<TR>
<TD>emergency contact phone :</TD>
<TD><INPUT id=primaryTravellerEmergencyPhone name=primaryTravellerEmergencyPhone></TD>
</TR>
<TR>
<TD><B>Mode of Payment :</B></TD>
<TD></TD>
</TR>
<TR>
<TD>Credit Card :</TD>
<TD><INPUT id=paymentCC value=true name=paymentCC></TD>
</TR>
<TR>
<TD>seat preference :</TD>
<TD><INPUT id=seatMapSelectionList
value=[segment.beginLocation.cityCode|segment.endLocation.cityName|seatsList][segment.beginLocation.cityCode|segment.endLocation.cityName|seatsList][segment.beginLocation.cityCode|segment.endLocation.cityName|seatsList][segment.beginLocation.cityCode|segment.endLocation.cityName|seatsList][segment.beginLocation.cityCode|segment.endLocation.cityName|seatsList][segment.beginLocation.cityCode|segment.endLocation.cityName|seatsList][segment.beginLocation.cityCode|segment.endLocation.cityName|seatsList][segment.beginLocation.cityCode|segment.endLocation.cityName|seatsList][segment.beginLocation.cityCode|segment.endLocation.cityName|seatsList]
name=seatMapSelectionList><BR></TD>
</TR>
<TR>
<TD>ext id :</TD>
<TD><INPUT id=cust_external_id name=cust_external_id></TD>
</TR>
<TR>
<TD>templateName :</TD>
<TD><INPUT id=custom_templateName value=cmtr name=custom_templateName></TD>
</TR>
<TR>
<TD>Portal Environment Variable 1:</TD>
<TD><INPUT id=pe_variable1 name=pe_variable1></TD>
</TR>
<TR>
<TD>Portal Environment Variable 2:</TD>
<TD><INPUT id=pe_variable2 name=pe_variable2></TD>
</TR>
<TR>
<TD>Portal Environment Variable 3:</TD>
<TD><INPUT id=pe_variable3 name=pe_variable3></TD>
</TR>
<TR>
<TD>Portal Environment Variable 4:</TD>
<TD><INPUT id=pe_variable4 name=pe_variable4></TD>
</TR>
<TR>
<TD>Portal Environment Variable 5:</TD>
<TD><INPUT id=pe_variable5 name=pe_variable5></TD>
</TR>
<TR>
<TD>Flex Pricer Mode:</TD>
<TD><INPUT id=flex_pricer_mode name=flex_pricer_mode></TD>
</TR>
<TR>
<TD>Flex Pricer Page Type:</TD>
<TD><INPUT id=flex_pricer_page_type name=flex_pricer_page_type></TD>
</TR>
<TR>
<TD>Error Code0:</TD>
<TD><INPUT id=errorCode0 value=9115 name=errorCode0></TD>
</TR>
<TR>
<TD>Error Type0:</TD>
<TD><INPUT id=errorType0 value=W name=errorType0></TD>
</TR>
<TR>
<TD>Error Description0:</TD>
<TD><INPUT id=errorDescription0
value="Please note that the Airline has cancelled one or more of your selected flights. Please modify your reservation, or contact your travel agent for further information. (9115) (9115)"
name=errorDescription0></TD>
</TR>
</TBODY>
</TABLE>
</FORM>
</CENTER>
</DIV>
<SCRIPT type=text/javascript>
// Variables and methods needed through out the page
function Right(str, n) {
if (n <= 0) {
return "";
}
else if (n > String(str).length) {
return str;
}
else {
var iLen = String(str).length;
return String(str).substring(iLen, iLen - n);
}
}
function days_between(date1_ms, date2_ms) {
var ONE_DAY = 1000 * 60 * 60 * 24;
var difference_ms = Math.abs(date1_ms - date2_ms);
return Math.round(difference_ms / ONE_DAY);
}
function minutes_between(date1_ms, date2_ms) {
var ONE_MINUTE = 1000 * 60;
var difference_ms = Math.abs(date1_ms - date2_ms);
return Math.round(difference_ms / ONE_MINUTE);
}
if (!window.data_isInitialized) {
rtowin = "";//Trip type (OW,RT,MULTI)