Mexico City 2015

From Wiki2
Revision as of 09:50, 14 January 2015 by Tim (talk | contribs) (Created page with " <SCRIPT Language="JavaScript"> function vpXSellPopup(strURL, lWidth, lHeight, lXPos, lYPos, strParams, sWinName) { var x=(lWidth?lWidth:600); var y=(lHeight?lHeight:500);...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


<SCRIPT Language="JavaScript"> function vpXSellPopup(strURL, lWidth, lHeight, lXPos, lYPos, strParams, sWinName) { var x=(lWidth?lWidth:600); var y=(lHeight?lHeight:500); var xp = (lXPos?lXPos:0); var yp = (lYPos?lYPos:0); var wName = (sWinName?sWinName:"VPXSellWin"); //var p = (strParams?strParams:"status=yes,toolbar=no,scrollbars=yes,menubar=no,location=no,resizable=0"); var p = (strParams?strParams:"status=yes,toolbar=yes,scrollbars=yes,menubar=yes,location=yes,resizable=1"); //w=window.open(strURL,wName,"height="+y+",width="+x+",left="+xp+",top="+yp+","+p); w=window.open(strURL,wName,"left="+xp+",top="+yp+","+p); if (w.opener == null) w.opener = self; } //end function </SCRIPT>


<script language='javascript'> var sCarDescURL='/rentalcars/lang/en-us/car_description.asp?session_key=354A050A364A050A201501141344448657d0122832&plf=pcln'; var iLeft=100, iTop=100, iWidth=440, iHeight=400; try { iLeft = (screen.width - iWidth)/2; iTop = (screen.height - iHeight)/2; } catch (e) {} var sParams = 'left=' + iLeft + ',top=' + iTop + ',width=' + iWidth + ',height=' + iHeight + ',toolbar=no,toolbar=0,menubar=no,menubar=0,statusbar=no,statusbar=0,scrollbars=yes,scrollbars=1';

function showCarDetails(sCarType) { var oWnd = window.open ((sCarDescURL + "&car=" + sCarType), 'PCLN_RC_POP', sParams); try {oWnd.focus();} catch(e) {} }

function showCarDesc(tempLink){ var iLeft=100, iTop=100, iWidth=510, iHeight=200; try { iLeft = (screen.width - iWidth)/2; iTop = (screen.height - iHeight)/2; } catch (e) {} var sParams = 'left=' + iLeft + ',top=' + iTop + ',width=' + iWidth + ',height=' + iHeight + ',toolbar=no,toolbar=0,menubar=no,menubar=0,statusbar=no,statusbar=0,scrollbars=yes,scrollbars=1'; var oWnd = window.open (tempLink, 'PCLN_RC_POP', sParams); try {oWnd.focus();} catch(e) {} }

</script>

<script language="javascript">

function openWindow(url, name, rs, w, h) { var resize = ""; if (rs){ resize = "resizable,"; } var oWnd = window.open(url, name, "scrollbars," + resize + ",left=100,top=100,width=" + w + ",height=" + h); try {oWnd.focus();} catch(e) {} }

function vpJSFmtCurr(anynum, bNoDecimals) { var inNum, digitsLen, pointLen, pointLoc, strNum, addOn;

   inNum = parseFloat(eval(anynum));  //evaluate (in case an expression sent)

if (isNaN(inNum)) return "ERROR";

inNum = (Math.round(inNum * 100)) / 100; //mult by 100, round and div by 100 to get number to 2 digits strNum = String(inNum); pointLen = strNum.length; pointLoc = strNum.indexOf(".");

//want to catch .-less and .x cases, only other is .xx which is ok as is if (pointLoc == -1) { strNum = strNum + ".00"; //.-less, add it all } else if (pointLoc == (pointLen-2)) { strNum = strNum + "0"; //.x, add a 0 }

//start at 6 (min for commas), advance by 3's through number - addOn compensates for added ,'s digitsLen = strNum.length - 1; //length of digits only (string length - 1 for .) addOn = 0; for (var i = 6; i <= digitsLen; i+=3) { var numChars = i + addOn; var len = strNum.length; strNum = strNum.substring(0, len-numChars) + "," + strNum.substr(len-numChars); addOn++; }

if (bNoDecimals) return strNum.substring(0, strNum.length-3); else return strNum; } </script>


<script language="javascript"> var oRCTotalPrice = new Object(); var oRCSplitPrice = new Object(); var oRCDivsToHide = new Object(); var oRCDebitCard = new Object(); </script> <script language="javascript">

function GetSelectedCarClass(strResultsSetID) {

var strSelectedCar = ""; var iSelectedCar = 0;

for (var idx=0; idx<document.getElementsByName("offer/rental_cars/TEMP/RCCarType"+strResultsSetID).length; idx++) { if (document.getElementsByName("offer/rental_cars/TEMP/RCCarType"+strResultsSetID)[idx].checked==true) iSelectedCar = idx; }

strSelectedCar = document.getElementById(strResultsSetID+"desc"+iSelectedCar).innerHTML;

return strSelectedCar; }

function gfRCGetTotalPriceSelectedCar(strResultsSetID) {

var iSelectedCar = 0;

for (var idx=0; idx<document.getElementsByName("offer/rental_cars/TEMP/RCCarType"+strResultsSetID).length; idx++) { if (document.getElementsByName("offer/rental_cars/TEMP/RCCarType"+strResultsSetID)[idx].checked==true) iSelectedCar = idx; }

return oRCTotalPrice[strResultsSetID+"row"+iSelectedCar]; }

function gfRCGetSplitPriceSelectedCar(strResultsSetID) {

var iSelectedCar = 0;

for (var idx=0; idx<document.getElementsByName("offer/rental_cars/TEMP/RCCarType"+strResultsSetID).length; idx++) { if (document.getElementsByName("offer/rental_cars/TEMP/RCCarType"+strResultsSetID)[idx].checked==true) iSelectedCar = idx; }

return oRCSplitPrice[strResultsSetID+"row"+iSelectedCar]; }


function gfRCDisplayResultsSet(strResultsSetId) {

var currDiv;

for (currDiv in oRCDivsToHide) document.getElementById(oRCDivsToHide[currDiv]).style.display = "none";

document.getElementById(strResultsSetId).style.display = "block";

var bDebitCard = oRCDebitCard[strResultsSetId]; document.getElementById("DebitYes").style.display = "none"; document.getElementById("DebitNo").style.display = "none";

if (bDebitCard) document.getElementById("DebitYes").style.display = "block"; else document.getElementById("DebitNo").style.display = "block";

//Get RC Total Price for the selected car lRcP = gfRCGetTotalPriceSelectedCar(strResultsSetId); //Call this air function to set the total price on the air page dUpATiRcP(); }

function ShowAllAPCOptions(sResultSetId , iAPCCount) { var iAPCHiddenCnt = iAPCCount - 4; for (var j=iAPCCount-5;j<iAPCCount;j++) { var obj = document.getElementById(sResultSetId+"row"+j); obj.style.display=""; } } function hideAllAPCOptionsLink(strResultsSetID) { var obj = document.getElementById("allAPCOptions" + strResultsSetID); obj.style.display="none"; } </script>

<script language=javascript> function retailSort(strSortType){ var strURL = "/travel/airlines/lang/en-us/status/printerfriendlyretail.asp?session_key=354A050A364A050A201501141344448657d0122832&plf=pcln" + "&RtSort=" + strSortType; window.location.href = strURL; } function retailAltDateSort(strSortType, strDateType, strObj){ var strDir = (strDateType=="OUTBOUND" ? "OUTBOUND" : "RETURN"); if(!strObj)return; var strindex = strObj.selectedIndex; var strAltDate = strObj[strindex].value;

 	if(!strAltDate)return;

var strOutDate = ""; if (strDateType== "RETURN") { var e1 = document.all["Retail_OUTBOUND_AltDate"]; if (e1!=null) { var tmpIdx = document.all["Retail_OUTBOUND_AltDate"].selectedIndex; var tmpDate = document.all["Retail_OUTBOUND_AltDate"][tmpIdx].value; strOutDate = "&Retail_OUTBOUND_AltDate=" + tmpDate; } }

var strURL = "/travel/airlines/lang/en-us/status/printerfriendlyretail.asp?session_key=354A050A364A050A201501141344448657d0122832&plf=pcln" + "&RtSort=" + strSortType + "&Retail_"+strDir+"_AltDate=" + strAltDate + strOutDate; window.location.href = strURL; } </script>


<script language=javascript> function OpenAirportWindow(URLString) { var strWidth = ( (String(URLString).indexOf("RehabType=OPQ")>=0) ? "440" : "440" ); //alert("strWidth:" + strWidth); winAirportsPopup = window.open(URLString,'Selected_Airports','toolbar=no,width='+strWidth+',height=250,status=no,scrollbars=no,resizable=no'); } </script> <script language="javascript"> </script>

<script language="JavaScript" src="/include/G_help.js"></script> <script language="javascript"> function gSK(){return("354A050A364A050A201501141344448657d0122832");} </script>

Your Flight Details

Departing Flight Information - Friday, February 6, 2015

United Airlines
Flight 1644
4h 35m, 1595 mi
From Gen Edward Logan Intl Airport (BOS)
Boston, MA
Departs: 4:50 PM
To George Bush Intercontinental Airport (IAH)
Houston, TX
Arrives: 8:25 PM
Aircraft Boeing 737-900 Economy/Coach Class
United Airlines
Flight 6494
2h 21m, 765 mi
From George Bush Intercontinental Airport (IAH)
Houston, TX
Departs: 9:08 PM
To Benito Juárez Intl Airport (MEX)
Mexico City, Mexico
Arrives: 11:29 PM
Aircraft Embraer RJ135/145 Economy/Coach Class

Returning Flight Information - Monday, February 16, 2015

United Airlines
Flight 628
7h 28m, 2276 mi
Makes 1 Stop
From Benito Juárez Intl Airport (MEX)
Mexico City, Mexico
Departs: 12:10 PM
To Gen Edward Logan Intl Airport (BOS)
Boston, MA
Arrives: 8:38 PM
Aircraft Airbus A320 Economy/Coach Class
Please note: This flight will make a stop at George Bush Intercontinental Airport (IAH), Houston , United States

Passenger and Ticket Information

Seats for: Timothy Scott Mckenna   ( Change Seat )
Carrier Flight # Seat Seat Type Seat Cost Status
United Airlines 1644 22A Standard No Charge Assigned
United Airlines 6494 10B Standard No Charge Assigned
United Airlines 628 24C Standard No Charge Assigned
Seat Charges for Timothy Scott Mckenna $0.00  
Trip Number:
184-554-170-41

Ticket Number:
0167485157850

Airline Confirmation:
PP67ZK - United Airlines

Ticket Type:
Electronic Ticket

Meal Preference:
No Meal Preference

Frequent Flyer Information:
None Provided

Seats for: Peri Levin Mckenna   ( Change Seat )
Carrier Flight # Seat Seat Type Seat Cost Status
United Airlines 1644 22E Standard No Charge Assigned
United Airlines 6494 10A Standard No Charge Assigned
United Airlines 628 25A Standard No Charge Assigned
Seat Charges for Peri Levin Mckenna $0.00  
Trip Number:
184-554-170-41

Ticket Number:
0167485157849

Airline Confirmation:
PP67ZK - United Airlines

Ticket Type:
Electronic Ticket

Meal Preference:
No Meal Preference

Frequent Flyer Information:
None Provided

Airline Contact Information

United Airlines 1-800-864-8331 www.ual.com confirmation: PP67ZK
what do these words mean?
Airline Confirmation, Electronic Ticket, Trip Number, Meal Preferences, Pending, Seat Preferences, Assigned, Requested, Not Assigned, Change Seat, Ticket Number
Commonly Used Terms
. Airline Confirmation
. Electronic Ticket
. Trip Number
. Meal Preferences
. Pending
. Seat Preferences
    . Assigned
    . Requested
    . Not Assigned
    . Change Seat
. Ticket Number

Airline Confirmation
This number is assigned by the airline that issued your tickets and should be your primary reference number when contacting the airline. On some airlines, this number can also be used for e-kiosk check-in.

Electronic Ticket
Electronic or paperless tickets are reservations stored in the airline's computer system. It's our preferred ticketing method because with no fear of losing your ticket, it's the most hassle-free way to travel.

Trip Number
This is your Priceline reference number. Use this number if you need to contact Priceline about your reservation.

Meal Preferences
Your meal preferences will be requested with the airlines for your flights, but are not guaranteed by the airlines and are only applicable for flights that offer meal service.

Pending
Ticket and airline confirmation numbers may take a few minutes to be received from the carrier. Please check back later.

Seat Preferences
While your seat preferences and selections will be provided to the airline, the airline reserves the right to change aircraft and seat assignments prior to departure. Seats for multiple passengers will be requested together, but are also subject to airline availability.

Assigned
The airline has assigned this seat.

Requested
The selected seat has been requested from the airline. Seat assignments are at the discretion of the airline and are not guaranteed. Please check back later or contact your carrier directly.

Not Assigned
Your requested seat is not currently assigned by the airline. A Not Assigned seat status may be the result of an airline schedule change or an airline’s inability to confirm a request. You may view available seats or request new seats by using the "Change Seat" link or by visiting your airline’s website.

Change Seat
Use this link if you wish to request a different seat.

Ticket Number
This is assigned by airline that issued your tickets. You can use this number if you need to contact the airline directly.

Commonly Used Terms
. Airline Confirmation
. Electronic Ticket
. Trip Number
. Meal Preferences
. Pending
. Seat Preferences
    . Assigned
    . Requested
    . Not Assigned
    . Change Seat
. Ticket Number

Airline Confirmation
This number is assigned by the airline that issued your tickets and should be your primary reference number when contacting the airline. On some airlines, this number can also be used for e-kiosk check-in.

Electronic Ticket
Electronic or paperless tickets are reservations stored in the airline's computer system. It's our preferred ticketing method because with no fear of losing your ticket, it's the most hassle-free way to travel.

Trip Number
This is your Priceline reference number. Use this number if you need to contact Priceline about your reservation.

Meal Preferences
Your meal preferences will be requested with the airlines for your flights, but are not guaranteed by the airlines and are only applicable for flights that offer meal service.

Pending
Ticket and airline confirmation numbers may take a few minutes to be received from the carrier. Please check back later.

Seat Preferences
While your seat preferences and selections will be provided to the airline, the airline reserves the right to change aircraft and seat assignments prior to departure. Seats for multiple passengers will be requested together, but are also subject to airline availability.

Assigned
The airline has assigned this seat.

Requested
The selected seat has been requested from the airline. Seat assignments are at the discretion of the airline and are not guaranteed. Please check back later or contact your carrier directly.

Not Assigned
Your requested seat is not currently assigned by the airline. A Not Assigned seat status may be the result of an airline schedule change or an airline’s inability to confirm a request. You may view available seats or request new seats by using the "Change Seat" link or by visiting your airline’s website.

Change Seat
Use this link if you wish to request a different seat.

Ticket Number
This is assigned by airline that issued your tickets. You can use this number if you need to contact the airline directly.

Commonly Used Terms
. Airline Confirmation
. Electronic Ticket
. Trip Number
. Meal Preferences
. Pending
. Seat Preferences
    . Assigned
    . Requested
    . Not Assigned
    . Change Seat
. Ticket Number

Airline Confirmation
This number is assigned by the airline that issued your tickets and should be your primary reference number when contacting the airline. On some airlines, this number can also be used for e-kiosk check-in.

Electronic Ticket
Electronic or paperless tickets are reservations stored in the airline's computer system. It's our preferred ticketing method because with no fear of losing your ticket, it's the most hassle-free way to travel.

Trip Number
This is your Priceline reference number. Use this number if you need to contact Priceline about your reservation.

Meal Preferences
Your meal preferences will be requested with the airlines for your flights, but are not guaranteed by the airlines and are only applicable for flights that offer meal service.

Pending
Ticket and airline confirmation numbers may take a few minutes to be received from the carrier. Please check back later.

Seat Preferences
While your seat preferences and selections will be provided to the airline, the airline reserves the right to change aircraft and seat assignments prior to departure. Seats for multiple passengers will be requested together, but are also subject to airline availability.

Assigned
The airline has assigned this seat.

Requested
The selected seat has been requested from the airline. Seat assignments are at the discretion of the airline and are not guaranteed. Please check back later or contact your carrier directly.

Not Assigned
Your requested seat is not currently assigned by the airline. A Not Assigned seat status may be the result of an airline schedule change or an airline’s inability to confirm a request. You may view available seats or request new seats by using the "Change Seat" link or by visiting your airline’s website.

Change Seat
Use this link if you wish to request a different seat.

Ticket Number
This is assigned by airline that issued your tickets. You can use this number if you need to contact the airline directly.

Commonly Used Terms
. Airline Confirmation
. Electronic Ticket
. Trip Number
. Meal Preferences
. Pending
. Seat Preferences
    . Assigned
    . Requested
    . Not Assigned
    . Change Seat
. Ticket Number

Airline Confirmation
This number is assigned by the airline that issued your tickets and should be your primary reference number when contacting the airline. On some airlines, this number can also be used for e-kiosk check-in.

Electronic Ticket
Electronic or paperless tickets are reservations stored in the airline's computer system. It's our preferred ticketing method because with no fear of losing your ticket, it's the most hassle-free way to travel.

Trip Number
This is your Priceline reference number. Use this number if you need to contact Priceline about your reservation.

Meal Preferences
Your meal preferences will be requested with the airlines for your flights, but are not guaranteed by the airlines and are only applicable for flights that offer meal service.

Pending
Ticket and airline confirmation numbers may take a few minutes to be received from the carrier. Please check back later.

Seat Preferences
While your seat preferences and selections will be provided to the airline, the airline reserves the right to change aircraft and seat assignments prior to departure. Seats for multiple passengers will be requested together, but are also subject to airline availability.

Assigned
The airline has assigned this seat.

Requested
The selected seat has been requested from the airline. Seat assignments are at the discretion of the airline and are not guaranteed. Please check back later or contact your carrier directly.

Not Assigned
Your requested seat is not currently assigned by the airline. A Not Assigned seat status may be the result of an airline schedule change or an airline’s inability to confirm a request. You may view available seats or request new seats by using the "Change Seat" link or by visiting your airline’s website.

Change Seat
Use this link if you wish to request a different seat.

Ticket Number
This is assigned by airline that issued your tickets. You can use this number if you need to contact the airline directly.

Commonly Used Terms
. Airline Confirmation
. Electronic Ticket
. Trip Number
. Meal Preferences
. Pending
. Seat Preferences
    . Assigned
    . Requested
    . Not Assigned
    . Change Seat
. Ticket Number

Airline Confirmation
This number is assigned by the airline that issued your tickets and should be your primary reference number when contacting the airline. On some airlines, this number can also be used for e-kiosk check-in.

Electronic Ticket
Electronic or paperless tickets are reservations stored in the airline's computer system. It's our preferred ticketing method because with no fear of losing your ticket, it's the most hassle-free way to travel.

Trip Number
This is your Priceline reference number. Use this number if you need to contact Priceline about your reservation.

Meal Preferences
Your meal preferences will be requested with the airlines for your flights, but are not guaranteed by the airlines and are only applicable for flights that offer meal service.

Pending
Ticket and airline confirmation numbers may take a few minutes to be received from the carrier. Please check back later.

Seat Preferences
While your seat preferences and selections will be provided to the airline, the airline reserves the right to change aircraft and seat assignments prior to departure. Seats for multiple passengers will be requested together, but are also subject to airline availability.

Assigned
The airline has assigned this seat.

Requested
The selected seat has been requested from the airline. Seat assignments are at the discretion of the airline and are not guaranteed. Please check back later or contact your carrier directly.

Not Assigned
Your requested seat is not currently assigned by the airline. A Not Assigned seat status may be the result of an airline schedule change or an airline’s inability to confirm a request. You may view available seats or request new seats by using the "Change Seat" link or by visiting your airline’s website.

Change Seat
Use this link if you wish to request a different seat.

Ticket Number
This is assigned by airline that issued your tickets. You can use this number if you need to contact the airline directly.

Commonly Used Terms
. Airline Confirmation
. Electronic Ticket
. Trip Number
. Meal Preferences
. Pending
. Seat Preferences
    . Assigned
    . Requested
    . Not Assigned
    . Change Seat
. Ticket Number

Airline Confirmation
This number is assigned by the airline that issued your tickets and should be your primary reference number when contacting the airline. On some airlines, this number can also be used for e-kiosk check-in.

Electronic Ticket
Electronic or paperless tickets are reservations stored in the airline's computer system. It's our preferred ticketing method because with no fear of losing your ticket, it's the most hassle-free way to travel.

Trip Number
This is your Priceline reference number. Use this number if you need to contact Priceline about your reservation.

Meal Preferences
Your meal preferences will be requested with the airlines for your flights, but are not guaranteed by the airlines and are only applicable for flights that offer meal service.

Pending
Ticket and airline confirmation numbers may take a few minutes to be received from the carrier. Please check back later.

Seat Preferences
While your seat preferences and selections will be provided to the airline, the airline reserves the right to change aircraft and seat assignments prior to departure. Seats for multiple passengers will be requested together, but are also subject to airline availability.

Assigned
The airline has assigned this seat.

Requested
The selected seat has been requested from the airline. Seat assignments are at the discretion of the airline and are not guaranteed. Please check back later or contact your carrier directly.

Not Assigned
Your requested seat is not currently assigned by the airline. A Not Assigned seat status may be the result of an airline schedule change or an airline’s inability to confirm a request. You may view available seats or request new seats by using the "Change Seat" link or by visiting your airline’s website.

Change Seat
Use this link if you wish to request a different seat.

Ticket Number
This is assigned by airline that issued your tickets. You can use this number if you need to contact the airline directly.

Commonly Used Terms
. Airline Confirmation
. Electronic Ticket
. Trip Number
. Meal Preferences
. Pending
. Seat Preferences
    . Assigned
    . Requested
    . Not Assigned
    . Change Seat
. Ticket Number

Airline Confirmation
This number is assigned by the airline that issued your tickets and should be your primary reference number when contacting the airline. On some airlines, this number can also be used for e-kiosk check-in.

Electronic Ticket
Electronic or paperless tickets are reservations stored in the airline's computer system. It's our preferred ticketing method because with no fear of losing your ticket, it's the most hassle-free way to travel.

Trip Number
This is your Priceline reference number. Use this number if you need to contact Priceline about your reservation.

Meal Preferences
Your meal preferences will be requested with the airlines for your flights, but are not guaranteed by the airlines and are only applicable for flights that offer meal service.

Pending
Ticket and airline confirmation numbers may take a few minutes to be received from the carrier. Please check back later.

Seat Preferences
While your seat preferences and selections will be provided to the airline, the airline reserves the right to change aircraft and seat assignments prior to departure. Seats for multiple passengers will be requested together, but are also subject to airline availability.

Assigned
The airline has assigned this seat.

Requested
The selected seat has been requested from the airline. Seat assignments are at the discretion of the airline and are not guaranteed. Please check back later or contact your carrier directly.

Not Assigned
Your requested seat is not currently assigned by the airline. A Not Assigned seat status may be the result of an airline schedule change or an airline’s inability to confirm a request. You may view available seats or request new seats by using the "Change Seat" link or by visiting your airline’s website.

Change Seat
Use this link if you wish to request a different seat.

Ticket Number
This is assigned by airline that issued your tickets. You can use this number if you need to contact the airline directly.

Commonly Used Terms
. Airline Confirmation
. Electronic Ticket
. Trip Number
. Meal Preferences
. Pending
. Seat Preferences
    . Assigned
    . Requested
    . Not Assigned
    . Change Seat
. Ticket Number

Airline Confirmation
This number is assigned by the airline that issued your tickets and should be your primary reference number when contacting the airline. On some airlines, this number can also be used for e-kiosk check-in.

Electronic Ticket
Electronic or paperless tickets are reservations stored in the airline's computer system. It's our preferred ticketing method because with no fear of losing your ticket, it's the most hassle-free way to travel.

Trip Number
This is your Priceline reference number. Use this number if you need to contact Priceline about your reservation.

Meal Preferences
Your meal preferences will be requested with the airlines for your flights, but are not guaranteed by the airlines and are only applicable for flights that offer meal service.

Pending
Ticket and airline confirmation numbers may take a few minutes to be received from the carrier. Please check back later.

Seat Preferences
While your seat preferences and selections will be provided to the airline, the airline reserves the right to change aircraft and seat assignments prior to departure. Seats for multiple passengers will be requested together, but are also subject to airline availability.

Assigned
The airline has assigned this seat.

Requested
The selected seat has been requested from the airline. Seat assignments are at the discretion of the airline and are not guaranteed. Please check back later or contact your carrier directly.

Not Assigned
Your requested seat is not currently assigned by the airline. A Not Assigned seat status may be the result of an airline schedule change or an airline’s inability to confirm a request. You may view available seats or request new seats by using the "Change Seat" link or by visiting your airline’s website.

Change Seat
Use this link if you wish to request a different seat.

Ticket Number
This is assigned by airline that issued your tickets. You can use this number if you need to contact the airline directly.

Commonly Used Terms
. Airline Confirmation
. Electronic Ticket
. Trip Number
. Meal Preferences
. Pending
. Seat Preferences
    . Assigned
    . Requested
    . Not Assigned
    . Change Seat
. Ticket Number

Airline Confirmation
This number is assigned by the airline that issued your tickets and should be your primary reference number when contacting the airline. On some airlines, this number can also be used for e-kiosk check-in.

Electronic Ticket
Electronic or paperless tickets are reservations stored in the airline's computer system. It's our preferred ticketing method because with no fear of losing your ticket, it's the most hassle-free way to travel.

Trip Number
This is your Priceline reference number. Use this number if you need to contact Priceline about your reservation.

Meal Preferences
Your meal preferences will be requested with the airlines for your flights, but are not guaranteed by the airlines and are only applicable for flights that offer meal service.

Pending
Ticket and airline confirmation numbers may take a few minutes to be received from the carrier. Please check back later.

Seat Preferences
While your seat preferences and selections will be provided to the airline, the airline reserves the right to change aircraft and seat assignments prior to departure. Seats for multiple passengers will be requested together, but are also subject to airline availability.

Assigned
The airline has assigned this seat.

Requested
The selected seat has been requested from the airline. Seat assignments are at the discretion of the airline and are not guaranteed. Please check back later or contact your carrier directly.

Not Assigned
Your requested seat is not currently assigned by the airline. A Not Assigned seat status may be the result of an airline schedule change or an airline’s inability to confirm a request. You may view available seats or request new seats by using the "Change Seat" link or by visiting your airline’s website.

Change Seat
Use this link if you wish to request a different seat.

Ticket Number
This is assigned by airline that issued your tickets. You can use this number if you need to contact the airline directly.

Commonly Used Terms
. Airline Confirmation
. Electronic Ticket
. Trip Number
. Meal Preferences
. Pending
. Seat Preferences
    . Assigned
    . Requested
    . Not Assigned
    . Change Seat
. Ticket Number

Airline Confirmation
This number is assigned by the airline that issued your tickets and should be your primary reference number when contacting the airline. On some airlines, this number can also be used for e-kiosk check-in.

Electronic Ticket
Electronic or paperless tickets are reservations stored in the airline's computer system. It's our preferred ticketing method because with no fear of losing your ticket, it's the most hassle-free way to travel.

Trip Number
This is your Priceline reference number. Use this number if you need to contact Priceline about your reservation.

Meal Preferences
Your meal preferences will be requested with the airlines for your flights, but are not guaranteed by the airlines and are only applicable for flights that offer meal service.

Pending
Ticket and airline confirmation numbers may take a few minutes to be received from the carrier. Please check back later.

Seat Preferences
While your seat preferences and selections will be provided to the airline, the airline reserves the right to change aircraft and seat assignments prior to departure. Seats for multiple passengers will be requested together, but are also subject to airline availability.

Assigned
The airline has assigned this seat.

Requested
The selected seat has been requested from the airline. Seat assignments are at the discretion of the airline and are not guaranteed. Please check back later or contact your carrier directly.

Not Assigned
Your requested seat is not currently assigned by the airline. A Not Assigned seat status may be the result of an airline schedule change or an airline’s inability to confirm a request. You may view available seats or request new seats by using the "Change Seat" link or by visiting your airline’s website.

Change Seat
Use this link if you wish to request a different seat.

Ticket Number
This is assigned by airline that issued your tickets. You can use this number if you need to contact the airline directly.

Commonly Used Terms
. Airline Confirmation
. Electronic Ticket
. Trip Number
. Meal Preferences
. Pending
. Seat Preferences
    . Assigned
    . Requested
    . Not Assigned
    . Change Seat
. Ticket Number

Airline Confirmation
This number is assigned by the airline that issued your tickets and should be your primary reference number when contacting the airline. On some airlines, this number can also be used for e-kiosk check-in.

Electronic Ticket
Electronic or paperless tickets are reservations stored in the airline's computer system. It's our preferred ticketing method because with no fear of losing your ticket, it's the most hassle-free way to travel.

Trip Number
This is your Priceline reference number. Use this number if you need to contact Priceline about your reservation.

Meal Preferences
Your meal preferences will be requested with the airlines for your flights, but are not guaranteed by the airlines and are only applicable for flights that offer meal service.

Pending
Ticket and airline confirmation numbers may take a few minutes to be received from the carrier. Please check back later.

Seat Preferences
While your seat preferences and selections will be provided to the airline, the airline reserves the right to change aircraft and seat assignments prior to departure. Seats for multiple passengers will be requested together, but are also subject to airline availability.

Assigned
The airline has assigned this seat.

Requested
The selected seat has been requested from the airline. Seat assignments are at the discretion of the airline and are not guaranteed. Please check back later or contact your carrier directly.

Not Assigned
Your requested seat is not currently assigned by the airline. A Not Assigned seat status may be the result of an airline schedule change or an airline’s inability to confirm a request. You may view available seats or request new seats by using the "Change Seat" link or by visiting your airline’s website.

Change Seat
Use this link if you wish to request a different seat.

Ticket Number
This is assigned by airline that issued your tickets. You can use this number if you need to contact the airline directly.

Summary of Charges

Airline Ticket Cost:  $476.60
Airline Ticket Taxes & Fees  $131.85   Bonus: No Priceline Booking Fee
Number of Tickets:  2
Airline Ticket Shipping & Handling:  $0.00 (Electronic Ticket)
Airfare Subtotal:  $1216.90
Total Trip Cost:
 (All prices are in US dollars)
 $1216.90
Payment Method:  Visa ending in 1208
Priceline Customer Service Number:  1-800-340-0575 (when calling from the United States)
Baggage Fees are not included in your trip cost.


It is the passenger's responsibility to confirm flight information and check-in location prior to each departure. We recommend that you arrive at the airport a minimum of 90 minutes in advance of departure for domestic flights and at least 2 hours in advance of departure for international flights. If you fail to arrive at your gate on time, the airline has the right to cancel your reservation and make you ineligible for denied boarding compensation. If you choose not to take any of the flights for which you are ticketed, the airlines will automatically cancel the remainder of your reservation.

All adults, 18 and over, are required to show valid photo identification when traveling domestically (examples include a driver's license, passport or state identification card). If you are traveling outside the U.S., all travelers, including persons under age 18, are required to present a valid passport, and you may also need to show additional documentation at your destination and/or in connecting countries.

Carry-on and checked baggage guidelines vary by airline, we recommend that you check your airline's Web site for answers to specific baggage questions. Airlines will not always guarantee seat assignments prior to airport check-in. If there is not a seat assignment printed on your ticket and/or itinerary, your carrier will assign one at the airport on the day of departure

For requirements due to disability, requests for special meals, or questions about traveling with pets, skis, etc., call your airline in advance so they are prepared to meet your needs. Please note - Priceline cannot guarantee that special needs requests will be met. Special meals are not available on all airlines and meal service is not guaranteed on all flights.

If your flight is delayed or canceled or you are denied boarding at the airport due to over booking, immediately check with your airline gate agent for information and instructions.

If your journey involves an ultimate destination or stop in a country other than the country of departure, the Warsaw Convention may be applicable and the Convention governs and in most cases limits the liability of carriers for death or personal injury and for loss of or damage to baggage. Also see the notices entitled Advice to International Passengers on Limitation of Liability, and Notice of Baggage Liability Limitations, Notice of Incorporated Terms, Notice - Overbooking of Flights.

Air transportation to be provided between points in the U.S. (including its overseas territories and possessions) is subject to the individual contract terms (including rules, regulations, tariffs, and conditions) of the transporting air carriers, which are herein incorporated by reference and made part of the contract of carriage. Also see the notices entitled Conditions of Contract, Notice of Incorporated Terms, Notice of Baggage Liability Limitations, and Notice of Overbooking.