// ###################### AIRLINE BAG SELECTOR #####################

/*

SETUP INSTRUCTIONS (2 Steps):


1.)	HOW TO ADD STOW LOCATIONS TO THE PULLDOWN MENU:

		Find the comment below, that says "BEGIN: 2ND PULLDOWN MENU ITEMS"
		and modify or create a line for each stow location thereunder.

		The stow locations are grouped by airline. To create additional stow locations,
		copy the last line of the group and add one to the [number], for example:

		If this is the last line of the "Air Canada" stow locations group:

				stowLocations[103] = "Checked"; stowLocationsGrp[103] = 1;

		then the next stow location added, would look like this:

				stowLocations[104] = "Cargo Area"; stowLocationsGrp[104] = 1;



2.) HOW TO ADD URLs:

		Find the line below, that says "function jump2url (urlnum)"
		and modify or create a line for each stow location, thereunder.

		The URLs are grouped by airline, just like the pulldown menu items.
		Set the "urlnum == "xxx" value, to match the [numbers] defined in the
		preceding instructions, for example:

		If you've added this line to the pulldown menu (as per the instructions above):

				stowLocations[103] = "Checked"; stowLocationsGrp[103] = 1;

		then you would add this line, to assign a URL to that model:

				else if ( urlnum == "104" ) { top.location = "/Departments/Luggage/AIR_CANADA_Cargo_Area.aspx" } // AIR_CANADA_Cargo_Area

		...and change the URL to point at the appropriate page.

*/


var stowLocations = new Array();
var stowLocationsGrp = new Array();

function jump2url (urlnum) {

//myref = window.open(''+this.options[this.selectedIndex].value,'_blank')\">");

	if ( urlnum == "101" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Air-Canada/Recommended-Air-Canada-Carryons.aspx","_blank"); } // AIR_CANADA_Carryon
	else if ( urlnum == "102" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Air-Canada/Recommended-Air-Canada-Checked-Luggage.aspx","_blank"); } // AIR_CANADA_Checked

	else if ( urlnum == "201" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Air-France/Recommended-Air-France-Carryons.aspx","_blank"); } // AIR_FRANCE_Carryon
	else if ( urlnum == "202" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Air-France/Recommended-Air-France-Checked-Luggage.aspx","_blank"); } // AIR_FRANCE_Checked

	else if ( urlnum == "301" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Air-New-Zealand/Recommended-Air-New-Zealand-Carryons.aspx","_blank"); } // AIR_NEW_ZEALAND_Carryon
	else if ( urlnum == "302" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Air-New-Zealand/Recommended-Air-New-Zealand-Checked-Luggage.aspx","_blank"); } // AIR_NEW_ZEALAND_Checked

	else if ( urlnum == "401" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Air-Tran/Recommended-Air-Tran-Carryons.aspx","_blank"); } // AIR_TRAN_Carryon
	else if ( urlnum == "402" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Air-Tran/Recommended-Air-Tran-Checked-Luggage.aspx","_blank"); } // AIR_TRAN_Checked

	else if ( urlnum == "501" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Alaska---Horizon/Recommended-Alaska---Horizon-Carryons.aspx","_blank"); } // ALASKA_Carryon
	else if ( urlnum == "502" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Alaska---Horizon/Recommended-Alaska---Horizon-Checked-Luggage.aspx","_blank"); } // ALASKA_-_HORIZON_Checked

	else if ( urlnum == "601" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Alitalia/Recommended-Alitalia-Carryons.aspx","_blank"); } // ALITALIA_Carryon
	else if ( urlnum == "602" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Alitalia/Recommended-Alitalia-Checked-Luggage.aspx","_blank"); } // ALITALIA_Checked

	else if ( urlnum == "701" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/American-West/Recommended-American-West-Carryons.aspx","_blank"); } // AMERICAN_WEST_Carryon
	else if ( urlnum == "702" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/American-West/Recommended-American-West-Checked-Luggage.aspx","_blank"); } // AMERICAN_WEST_Checked

	else if ( urlnum == "801" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/American-Airlines/Recommended-American-Airlines-Carryons.aspx","_blank"); } // AMERICAN_AIRLINES_Carryon
	else if ( urlnum == "802" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/American-Airlines/Recommended-American-Airlines-Checked-Luggage.aspx","_blank"); } // AMERICAN_AIRLINES_Checked

	else if ( urlnum == "901" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/ANA/Recommended-ANA-Carryons.aspx","_blank"); } // ANA_Carryon
	else if ( urlnum == "902" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/ANA/Recommended-ANA-Checked-Luggage.aspx","_blank"); } // ANA_Checked

	else if ( urlnum == "1001" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/ATA/Recommended-ATA-Carryons.aspx","_blank"); } // ATA_Carryon
	else if ( urlnum == "1002" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/ATA/Recommended-ATA-Checked-Luggage.aspx","_blank"); } // ATA_Checked

	else if ( urlnum == "1101" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/bmi/Recommended-bmi-Carryons.aspx","_blank"); } // BMI_Carryon
	else if ( urlnum == "1102" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/bmi/Recommended-bmi-Checked-Luggage.aspx","_blank"); } // BMI_Checked

	else if ( urlnum == "1201" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/British-Airways/Recommended-British-Airways-Carryons.aspx","_blank"); } // BRISTISH_AIRWAYS_Carryon
	else if ( urlnum == "1202" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/British-Airways/Recommended-British-Airways-Checked-Luggage.aspx","_blank"); } // BRISTISH_AIRWAYS_Checked

	else if ( urlnum == "1301" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Cathay-Pacific/Recommended-Cathay-Pacific-Carryons.aspx","_blank"); } // CATHAY_PACIFIC_Carryon
	else if ( urlnum == "1302" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Cathay-Pacific/Recommended-Cathay-Pacific-Checked-Luggage.aspx","_blank"); } // CATHAY_PACIFIC_Checked

	else if ( urlnum == "1401" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Continental/Recommended-Continental-Carryons.aspx","_blank"); } // CONTINENTAL_Carryon
	else if ( urlnum == "1402" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Continental/Recommended-Continental-Checked-Luggage.aspx","_blank"); } // CONTINENTAL_Checked

	else if ( urlnum == "1501" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Continental-Express/Recommended-Continental-Express-Carryons.aspx","_blank"); } // CONTINENTAL_EXPRESS_Carryon
	else if ( urlnum == "1502" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Continental-Express/Recommended-Continental-Express-Checked-Luggage.aspx","_blank"); } // CONTINENTAL_EXPRESS_Checked

	else if ( urlnum == "1601" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Delta/Recommended-Delta-Carryons.aspx","_blank"); } // DELTA_Carryon
	else if ( urlnum == "1602" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Delta/Recommended-Delta-Checked-Luggage.aspx","_blank"); } // DELTA_Checked

	else if ( urlnum == "1701" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Emirates/Recommended-Emirates-Carryons.aspx","_blank"); } // EMIRATES_Carryon
	else if ( urlnum == "1702" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Emirates/Recommended-Emirates-Checked-Luggage.aspx","_blank"); } // EMIRATES_Checked

	else if ( urlnum == "1801" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Frontier/Recommended-Frontier-Carryons.aspx","_blank"); } // FRONTIER_Carryon
	else if ( urlnum == "1802" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Frontier/Recommended-Frontier-Checked-Luggage.aspx","_blank"); } // FRONTIER_Checked
	
	else if ( urlnum == "1901" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Hawaiian/Recommended-Hawaiian-Carryons.aspx","_blank"); } // HAWAIIAN_Carryon
	else if ( urlnum == "1902" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Hawaiian/Recommended-Hawaiian-Checked-Luggage.aspx","_blank"); } // HAWAIIAN_Checked

	else if ( urlnum == "2001" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/JetBlue/Recommended-Jet-Blue-Carryons.aspx","_blank"); } // JETBLUE_Carryon
	else if ( urlnum == "2002" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/JetBlue/Recommended-Jet-Blue-Checked-Luggage.aspx","_blank"); } // JETBLUE_Checked

	else if ( urlnum == "2101" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/KLM/Recommended-KLM-Carryons.aspx","_blank"); } // KLM_Carryon
	else if ( urlnum == "2102" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/KLM/Recommended-KLM-Checked-Luggage.aspx","_blank"); } // KLM_Checked

	else if ( urlnum == "2201" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Lufthansa/Recommended-Lufthansa-Carryons.aspx","_blank"); } // LUFTHANSA_Carryon
	else if ( urlnum == "2202" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Lufthansa/Recommended-Lufthansa-Checked-Luggage.aspx","_blank"); } // LUFTHANSA_Checked

	else if ( urlnum == "2301" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Midwest/Recommended-Midwest-Carryons.aspx","_blank"); } // MIDWEST_Carryon
	else if ( urlnum == "2302" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Midwest/Recommended-Midwest-Checked-Luggage.aspx","_blank"); } // MIDWEST_Checked

	else if ( urlnum == "2401" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Northwest/Recommended-Northwest-Carryons.aspx","_blank"); } // NORTHWEST_Carryon
	else if ( urlnum == "2402" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Northwest/Recommended-Northwest-Checked-Luggage.aspx","_blank"); } // NORTHWEST_Checked

	else if ( urlnum == "2501" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Qantas/Recommended-Qantas-Carryons.aspx","_blank"); } // Qantas_Carryon
	else if ( urlnum == "2502" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Qantas/Recommended-Qantas-Checked-Luggage.aspx","_blank"); } // Qantas_Checked

	else if ( urlnum == "2601" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/SAS/Recommended-SAS-Carryons.aspx","_blank"); } // SAS_Carryon
	else if ( urlnum == "2602" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/SAS/Recommended-SAS-Checked-Luggage.aspx","_blank"); } // SAS_Under_Seat

	else if ( urlnum == "2701" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Singapore-Air/Recommended-Singapore-Air-Carryons.aspx","_blank"); } // SIGNAPORE_AIR_Carryon
	else if ( urlnum == "2702" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Singapore-Air/Recommended-Singapore-Air-Checked-Luggage.aspx","_blank"); } // SIGNAPORE_AIR_Checked

	else if ( urlnum == "2801" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/South-African/Recommended-South-African-Carryons.aspx","_blank"); } // SOUTH_AFRICAN_Carryon
	else if ( urlnum == "2802" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/South-African/Recommended-South-African-Checked-Luggage.aspx","_blank"); } // SOUTH_AFRICAN_Checked

	else if ( urlnum == "2901" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Southwest/Recommended-Southwest-Carryons.aspx","_blank"); } // SOUTHWEST_Carryon
	else if ( urlnum == "2902" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Southwest/Recommended-Southwest-Checked-Luggage.aspx","_blank"); } // SOUTHWEST_Checked

	else if ( urlnum == "3001" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Spirit/Recommended-Spirit-Carryons.aspx","_blank"); } // SPIRIT_Carryon
	else if ( urlnum == "3002" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Spirit/Recommended-Spirit-Checked-Luggage.aspx","_blank"); } // SPIRIT_Checked

	else if ( urlnum == "3101" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Swiss/Recommended-Swiss-Carryons.aspx","_blank"); } // SWISS_Carryon
	else if ( urlnum == "3102" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Swiss/Recommended-Swiss-Checked-Luggage.aspx","_blank"); } // SWISS_Checked

	else if ( urlnum == "3201" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/United---Ted/Recommended-United---Ted-Carryons.aspx","_blank"); } // UNITED_-_TED_Carryon
	else if ( urlnum == "3202" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/United---Ted/Recommended-United---Ted-Checked-Luggage.aspx","_blank"); } // UNITED_-_TED_Checked

	else if ( urlnum == "3301" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/US-Airways/Recommended-US-Airways-Carryons.aspx","_blank"); } // US_AIRWAYS_Carryon
	else if ( urlnum == "3302" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/US-Airways/Recommended-US-Airways-Checked-Luggage.aspx","_blank"); } // US_AIRWAYS_Checked

	else if ( urlnum == "3401" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Virgin-Atlantic/Recommended-Virgin-Atlantic-Carryons.aspx","_blank"); } // VIRGIN_ATLANTIC_Carryon
	else if ( urlnum == "3402" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Virgin-Atlantic/Recommended-Virgin-Atlantic-Checked-Luggage.aspx","_blank"); } // VIRGIN_ATLANTIC_Checked

	else if ( urlnum == "3501" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Westjet/Recommended-Westjet-Carryons.aspx","_blank"); } // WESTJET_Carryon
	else if ( urlnum == "3502" ) { myref = window.open("/Departments/Guide-/Airline-Baggage-Regulations/Westjet/Recommended-Westjet-Checked-Luggage.aspx","_blank"); } // WESTJET_Checked

	else { top.location = "/" } // default jump

}



// BEGIN: 2ND PULLDOWN MENU ITEMS

// AIR CANADA [100]
	stowLocations[101] = "Carryon"; stowLocationsGrp[101] = 1;
	stowLocations[102] = "Checked"; stowLocationsGrp[102] = 1;

// AIR FRANCE [200]
	stowLocations[201] = "Carryon"; stowLocationsGrp[201] = 2;
	stowLocations[202] = "Checked"; stowLocationsGrp[202] = 2;

// AIR NEW ZEALAND [300]
	stowLocations[301] = "Carryon"; stowLocationsGrp[301] = 3;
	stowLocations[302] = "Checked"; stowLocationsGrp[302] = 3;

// AIR_TRAN [400]
	stowLocations[401] = "Carryon"; stowLocationsGrp[401] = 4;
	stowLocations[402] = "Checked"; stowLocationsGrp[402] = 4;

// ALASKA / HORIZON [500]
	stowLocations[501] = "Carryon"; stowLocationsGrp[501] = 5;
	stowLocations[502] = "Checked"; stowLocationsGrp[502] = 5;

// ALITALIA [600]
	stowLocations[601] = "Carryon"; stowLocationsGrp[601] = 6;
	stowLocations[602] = "Checked"; stowLocationsGrp[602] = 6;

// AMERICAN WEST [700]
	stowLocations[701] = "Carryon"; stowLocationsGrp[701] = 7;
	stowLocations[702] = "Checked"; stowLocationsGrp[702] = 7;

// AMERICAN AIRLINES [800]
	stowLocations[801] = "Carryon"; stowLocationsGrp[801] = 8;
	stowLocations[802] = "Checked"; stowLocationsGrp[802] = 8;

// ANA [900]
	stowLocations[901] = "Carryon"; stowLocationsGrp[901] = 9;
	stowLocations[902] = "Checked"; stowLocationsGrp[902] = 9;

// ATA [1000]
	stowLocations[1001] = "Carryon"; stowLocationsGrp[1001] = 10;
	stowLocations[1002] = "Checked"; stowLocationsGrp[1002] = 10;

// BMI [1100]
	stowLocations[1101] = "Carryon"; stowLocationsGrp[1101] = 11;
	stowLocations[1102] = "Checked"; stowLocationsGrp[1102] = 11;

// BRISTISH AIRWAYS [1200]
	stowLocations[1201] = "Carryon"; stowLocationsGrp[1201] = 12;
	stowLocations[1202] = "Checked"; stowLocationsGrp[1202] = 12;

// CATHAY PACIFIC [1300]
	stowLocations[1301] = "Carryon"; stowLocationsGrp[1301] = 13;
	stowLocations[1302] = "Checked"; stowLocationsGrp[1302] = 13;

// CONTINENTAL [1400]
	stowLocations[1401] = "Carryon"; stowLocationsGrp[1401] = 14;
	stowLocations[1402] = "Checked"; stowLocationsGrp[1402] = 14;

// CONTINENTAL EXPRESS [1500]
	stowLocations[1501] = "Carryon"; stowLocationsGrp[1501] = 15;
	stowLocations[1502] = "Checked"; stowLocationsGrp[1502] = 15;

// DELTA [1600]
	stowLocations[1601] = "Carryon"; stowLocationsGrp[1601] = 16;
	stowLocations[1602] = "Checked"; stowLocationsGrp[1602] = 16;

// EMIRATES [1700]
	stowLocations[1701] = "Carryon"; stowLocationsGrp[1701] = 17;
	stowLocations[1702] = "Checked"; stowLocationsGrp[1702] = 17;

// FRONTIER [1800]
	stowLocations[1801] = "Carryon"; stowLocationsGrp[1801] = 18;
	stowLocations[1802] = "Checked"; stowLocationsGrp[1802] = 18;

// HAWAIIAN [1900]
	stowLocations[1901] = "Carryon"; stowLocationsGrp[1901] = 19;
	stowLocations[1902] = "Checked"; stowLocationsGrp[1902] = 19;

// JETBLUE [2000]
	stowLocations[2001] = "Carryon"; stowLocationsGrp[2001] = 20;
	stowLocations[2002] = "Checked"; stowLocationsGrp[2002] = 20;

// KLM [2100]
	stowLocations[2101] = "Carryon"; stowLocationsGrp[2101] = 21;
	stowLocations[2102] = "Checked"; stowLocationsGrp[2102] = 21;

// LUFTHANSA [2200]
	stowLocations[2201] = "Carryon"; stowLocationsGrp[2201] = 22;
	stowLocations[2202] = "Checked"; stowLocationsGrp[2202] = 22;

// MIDWEST [2300]
	stowLocations[2301] = "Carryon"; stowLocationsGrp[2301] = 23;
	stowLocations[2302] = "Checked"; stowLocationsGrp[2302] = 23;

// NORTHWEST [2400]
	stowLocations[2401] = "Carryon"; stowLocationsGrp[2401] = 24;
	stowLocations[2402] = "Checked"; stowLocationsGrp[2402] = 24;

// Qantas [2500]
	stowLocations[2501] = "Carryon"; stowLocationsGrp[2501] = 25;
	stowLocations[2502] = "Checked"; stowLocationsGrp[2502] = 25;

// SAS [2600]
	stowLocations[2601] = "Carryon"; stowLocationsGrp[2601] = 26;
	stowLocations[2602] = "Checked"; stowLocationsGrp[2602] = 26;

// SIGNAPORE AIR [2700]
	stowLocations[2701] = "Carryon"; stowLocationsGrp[2701] = 27;
	stowLocations[2702] = "Checked"; stowLocationsGrp[2702] = 27;

// SOUTH AFRICAN [2800]
	stowLocations[2801] = "Carryon"; stowLocationsGrp[2801] = 28;
	stowLocations[2802] = "Checked"; stowLocationsGrp[2802] = 28;

// SOUTHWEST [2900]
	stowLocations[2901] = "Carryon"; stowLocationsGrp[2901] = 29;
	stowLocations[2902] = "Checked"; stowLocationsGrp[2902] = 29;

// SPIRIT [3000]
	stowLocations[3001] = "Carryon"; stowLocationsGrp[3001] = 30;
	stowLocations[3002] = "Checked"; stowLocationsGrp[3002] = 30;

// SWISS [3100]
	stowLocations[3101] = "Carryon"; stowLocationsGrp[3101] = 31;
	stowLocations[3102] = "Checked"; stowLocationsGrp[3102] = 31;

// UNITED / TED [3200]
	stowLocations[3201] = "Carryon"; stowLocationsGrp[3201] = 32;
	stowLocations[3202] = "Checked"; stowLocationsGrp[3202] = 32;

// US AIRWAYS [3300]
	stowLocations[3301] = "Carryon"; stowLocationsGrp[3301] = 33;
	stowLocations[3302] = "Checked"; stowLocationsGrp[3302] = 33;

// VIRGIN ATLANTIC [3400]
	stowLocations[3401] = "Carryon"; stowLocationsGrp[3401] = 34;
	stowLocations[3402] = "Checked"; stowLocationsGrp[3402] = 34;

// WESTJET [3500]
	stowLocations[3501] = "Carryon"; stowLocationsGrp[3501] = 35;
	stowLocations[3502] = "Checked"; stowLocationsGrp[3502] = 35;

// END: 2ND PULLDOWN MENU ITEMS


// BEGIN: JAVASCRIPT FUNCTION TO POPULATE 2ND PULLDOWN MENU

function showLocations(control, controlToPopulate, ItemArray, GroupArray) {
  var myEle ;
  var x ;
  // Empty the second drop down box of any choices
  for (var q=controlToPopulate.options.length;q>=0;q--) controlToPopulate.options[q]=null;
  // ADD Default Choice - in case there are no values
  myEle = document.createElement("option") ;
  myEle.value = 0 ;
  myEle.text = "Select Location" ;
  // controlToPopulate.add(myEle) ;
  controlToPopulate.appendChild(myEle)
  // Now loop through the array of individual items
  // Any containing the same child id are added to
  // the second dropdown box
  for ( x = 0 ; x < ItemArray.length  ; x++ ) {
    if ( GroupArray[x] == control.value ) {
      myEle = document.createElement("option") ;
      //myEle.value = x ;
      myEle.setAttribute('value',x);
      // myEle.text = ItemArray[x] ;
      var txt = document.createTextNode(ItemArray[x]);
      myEle.appendChild(txt)
      // controlToPopulate.add(myEle) ;
      controlToPopulate.appendChild(myEle)
    }
  }
}

// END: JAVASCRIPT FUNCTION TO POPULATE 2ND PULLDOWN MENU


// BEGIN: AIRLINE BAG FINDER FORM

document.writeln("<div class='top_pulldown'>");
document.writeln("<select id='Airlines' name='Airlines' onchange='showLocations(this, locations, stowLocations, stowLocationsGrp);' style='width:138px;font-size:10px;'>");
document.writeln("  <option value='0' selected>Select Your Airlines</option>");
document.writeln("  <option value='1'>Air Canada </option>");
document.writeln("	<option value='2' >Air France </option>");
document.writeln("	<option value='3' >Air New Zealand </option>");
document.writeln("	<option value='4' >AIR_TRAN </option>");
document.writeln("	<option value='5' >Alaska / Horizon </option>");
document.writeln("	<option value='6' >Alitalia </option>");
document.writeln("	<option value='7' >American West </option>");
document.writeln("	<option value='8' >American Airlines </option>");
document.writeln("	<option value='9' >ANA </option>");
document.writeln("	<option value='10' >ATA </option>");
document.writeln("	<option value='11' >bmi </option>");
document.writeln("	<option value='12' >Bristish Airways </option>");
document.writeln("	<option value='13' >Cathay Pacific </option>");
document.writeln("	<option value='14' >Continental </option>");
document.writeln("	<option value='15' >Continental Express </option>");
document.writeln("	<option value='16' >Delta </option>");
document.writeln("	<option value='17' >Emirates </option>");
document.writeln("	<option value='18' >Frontier </option>");
document.writeln("	<option value='19' >Hawaiian </option>");
document.writeln("	<option value='20' >JetBlue </option>");
document.writeln("	<option value='21' >KLM </option>");
document.writeln("	<option value='22' >Lufthansa </option>");
document.writeln("	<option value='23' >Midwest </option>");
document.writeln("	<option value='24' >Northwest </option>");
document.writeln("	<option value='25' >Qantas </option>");
document.writeln("	<option value='26' >SAS </option>");
document.writeln("	<option value='27' >Signapore Air </option>");
document.writeln("	<option value='28' >South African </option>");
document.writeln("	<option value='29' >Southwest </option>");
document.writeln("	<option value='30' >Spirit </option>");
document.writeln("	<option value='31' >Swiss </option>");
document.writeln("	<option value='32' >United / Ted </option>");
document.writeln("	<option value='33' >US Airways </option>");
document.writeln("	<option value='34' >Virgin Atlantic </option>");
document.writeln("	<option value='35' >Westjet </option>");
document.writeln("</select></div>");
document.writeln("<div class='bottompulldown'>");
document.writeln("<img src='Images/MainPage/spacer.gif' alt='' width='120' height='8'>");
document.writeln("<select id='locations' name='locations' style='width:138px;font-size:10px' onChange='if(this.selectedIndex!=0) jump2url(this.options[this.selectedIndex].value)'>");
document.writeln("	<option>Select Location</option>");
document.writeln("</select></div>");

// END: AIRLINE BAG FINDER FORM
