		var F_daysOutMin = 1;
		var F_daysOutMax = 331;
		var F_minFromDate = new Date();
		F_minFromDate.setDate(F_minFromDate.getDate()+F_daysOutMin);	
		F_minFromDate.setHours(0);
		F_minFromDate.setMinutes(0);
		F_minFromDate.setSeconds(0);
		F_minFromDate.setMilliseconds(0);
		var F_minToDate = new Date();
		F_minToDate.setDate(F_minToDate.getDate()+F_daysOutMin);	
		F_minToDate.setHours(0);
		F_minToDate.setMinutes(0);
		F_minToDate.setSeconds(0);
		F_minToDate.setMilliseconds(0);

		var F_maxFromDate = new Date();
		F_maxFromDate.setDate(F_maxFromDate.getDate()+F_daysOutMax);	
		F_maxFromDate.setHours(0);
		F_maxFromDate.setMinutes(0);
		F_maxFromDate.setSeconds(0);
		F_maxFromDate.setMilliseconds(0);
		var F_maxToDate = new Date();
		F_maxToDate.setDate(F_maxToDate.getDate()+F_daysOutMax);
		F_maxToDate.setHours(0);
		F_maxToDate.setMinutes(0);
		F_maxToDate.setSeconds(0);
		F_maxToDate.setMilliseconds(0);

		function F_F_leftPad(s, len)
		{
			s = "000000" + s;
			return s.substring(s.length - len);
		}
		function F_formatDateYYYYsMMsDD(d)
		{
 			return d.getFullYear() + "/" + F_leftPad(d.getMonth() + 1, 2) + "/" + F_leftPad(d.getDate(), 2);
 		}
		function F_formatDateYYYYMMDD(d)
		{
 			return d.getFullYear() + F_leftPad(d.getMonth() + 1, 2) + F_leftPad(d.getDate(), 2);
 		}
		function F_formatDateMYYYY(d)
		{
 			return d.getMonth() + "-" + d.getFullYear();	// 0-2009 where 0 = index
 		}
		function F_formatDateMMMYY(d)
		{
 			return getMonthName(d.getMonth()).shortName + " " + F_leftPad(d.getYear(),2);	// Jul 09
 		}
		 		
		function F_zeroPadDay(day)
		{
			var dayS = day.toString();
			if ( dayS.length == 1 )
			{
				return "0" + dayS;
			}
			else
			{
				return dayS;
			}
		}
		
		// populates the fromDD 
		function F_populateFromDD()
		{
			//console.log("populateFromDD:F_minFromDate=" + F_minFromDate);
			var obj = document.changeFlightDatesForm.fromDD;
			obj.length = 0;
			var fromMM = document.changeFlightDatesForm.fromMM.value;
			var parts = fromMM.split("-");
			//console.log("populateFromDD:parts are " + parts[0] + ":" + parts[1]);
			var monthLength = getMonthDays(parts[0], parts[1]);
			//console.log("populateFromDD:monthLength is " + monthLength);
			obj.length = 0;
			var idx = 0;
			for ( y = 1; y <= monthLength; y++)
			{
				var d = new Date(parts[1], parts[0], y);
				d.setHours(1);
				//console.log("populateFromDD:d is " + d + ", min is " + F_minFromDate + ", max is " + F_maxFromDate);
				if ( d >= F_minFromDate && d <= F_maxFromDate ) {
					var day = getDayName(d.getDay()).shortName + " " + zeroPadDay(d.getDate());
					obj.options[idx] = new Option(day, d.getDate());
					//console.log("adding option " + d.getDate() + ":" + day);
					idx++;
				}
			}
			obj.options[0].selected = true;
		} 

		// populates the fromMM 
		function F_populateFromMM(d)
		{
			//console.log("populateFromMM:d=" + d + ", F_minFromDate=" + F_minFromDate);
			var dateSelectedFromObj = document.changeFlightDatesForm.dateSelectedFrom;
			dateSelectedFromObj.value = formatDateYYYYMMDD(d);
			var fromCalDateObj = document.changeFlightDatesForm.F_fromCalDate;
			fromCalDateObj.value = formatDateYYYYsMMsDD(d);
			var fromMMObj = document.changeFlightDatesForm.fromMM;
			var lastVal = '';
			var idx = 0;
			for ( cnt = 0; cnt < F_daysOutMax; cnt++)
			{
				var theValue = formatDateMYYYY(d);
				var theDisplay = formatDateMMMYY(d);
				if ( theValue != lastVal )
				{
					fromMMObj.options[idx] = new Option(theDisplay, theValue);
					//console.log("populateFromMM:option=" + theValue + ":" + theDisplay);
					lastVal = theValue;
					idx = idx + 1;
				}
				d.setDate(d.getDate() + 1);
			}
			fromMMObj.options[0].selected = true;
			F_populateFromDD();
		} 

		// reacts to changes in the fromDD field
		function F_changeFromDD()
		{
			var objDD = document.changeFlightDatesForm.fromDD.value;
			var objMM = document.changeFlightDatesForm.fromMM.value;
			var mmyyyy = objMM.split("-");
			var date = new Date(mmyyyy[1], mmyyyy[0], objDD);
			F_updateFromDate(date);
			F_updateFromCalDate(date);
			F_recalcToDate();
		} 

		// allows other methods to modify fromDD by passing a Date d.  Modifies no other fields.
		function F_updateFromDD(d)
		{
			var date = d.getDate();
			var obj = document.changeFlightDatesForm.fromDD;
			for ( i = 0; i < obj.length; i++ )
			{
				if ( obj.options[i].value == date ) {
					obj.options[i].selected = true;
				}
			}
		} 

		// reacts to changes in the fromMM field.  Repopulates the fromDD field.
		function F_changeFromMM()
		{
			var obj = document.changeFlightDatesForm.fromMM;
			F_populateFromDD();
			F_changeFromDD();
		} 

		// allows other methods to modify fromMM by passing a Date d
		function F_updateFromMM(d)
		{
			var dateText = d.getMonth() + "-" + d.getFullYear();
			var obj = document.changeFlightDatesForm.fromMM;
			for ( i = 0; i < obj.length; i++ )
			{
				if ( obj.options[i].value == dateText )
				{
					obj.options[i].selected = true;
					break;
				}
			}
		} 

		// allows other methods to modify fromDate by passing a Date d.
		// fromDate format is YYYYMMDD
		function F_updateFromDate(d)
		{
			var month = d.getMonth() + 1;
			month = "0" + month;
			month = month.slice(month.length - 2);
			var day = d.getDate();
			day = "0" + day;
			day = day.slice(day.length - 2);
			var dateText = "" + d.getFullYear() + month + day;
			document.changeFlightDatesForm.dateSelectedFrom.value = dateText;
		} 


		// takes the calendar date and populates the fromDD and fromMM parts.  The Calendar date by default is MM/DD/YYYY
		function F_changeFromCalDate()
		{
			//console.log("changeFromCalDate:");
			var objDate = document.changeFlightDatesForm.F_fromCalDate.value;
			var d = new Date(objDate);
			F_updateFromDate(d);
			F_updateFromMM(d);
			F_populateFromDD();
			F_updateFromDD(d);
			F_changeFromDD();
		} 

		// allows other methods to modify fromCalDate by passing a Date d.
		// calFromDate format is yyyy/mm/dd
		function F_updateFromCalDate(d)
		{
			var month = d.getMonth() + 1;
			var day = d.getDate();
			var dateText = "" + d.getFullYear() + "/" + month + "/" + day;
			document.changeFlightDatesForm.F_fromCalDate.value = dateText;
		} 

		// populates the toDD 
		function F_populateToDD()
		{
			var obj = document.changeFlightDatesForm.toDD;
			obj.length = 0;
			var toMM = document.changeFlightDatesForm.toMM.value;
			var parts = toMM.split("-");
			var monthLength = getMonthDays(parts[0], parts[1]);
			obj.length = 0;
			var idx = 0;
			for ( y = 1; y <= monthLength; y++)
			{
				var d = new Date(parts[1], parts[0], y);
				d.setHours(1);
				if ( d >= F_minToDate && d <= F_maxToDate ) {
					var day = getDayName(d.getDay()).shortName + " " + zeroPadDay(d.getDate());
					obj.options[idx] = new Option(day, d.getDate());
					idx++;
				}
			}
			obj.options[0].selected = true;
		} 

		// populates the toMM 
		function F_populateToMM(d)
		{
			//console.log("populateToMM:d=" + d + ", F_minFromDate=" + F_minFromDate);
			var dateSelectedToObj = document.changeFlightDatesForm.dateSelectedTo;
			dateSelectedToObj.value = formatDateYYYYMMDD(d);
			var toCalDateObj = document.changeFlightDatesForm.F_toCalDate;
			toCalDateObj.value = formatDateYYYYsMMsDD(d);
			var toMMObj = document.changeFlightDatesForm.toMM;
			var lastVal = '';
			var idx = 0;
			for ( cnt = 0; cnt < F_daysOutMax; cnt++)
			{
				var theValue = formatDateMYYYY(d);
				var theDisplay = formatDateMMMYY(d);
				if ( theValue != lastVal )
				{
					toMMObj.options[idx] = new Option(theDisplay, theValue);
					//console.log("populateToMM:option=" + theValue + ":" + theDisplay);
					lastVal = theValue;
					idx = idx + 1;
				}
				d.setDate(d.getDate() + 1);
			}
			toMMObj.options[0].selected = true;
			F_populateToDD();
		} 

		// reacts to changes in the toDD field
		function F_changeToDD()
		{
			var objDD = document.changeFlightDatesForm.toDD.value;
			var objMM = document.changeFlightDatesForm.toMM.value;
			var mmyyyy = objMM.split("-");
			var date = new Date(mmyyyy[1], mmyyyy[0], objDD);
			F_updateToDate(date);
			F_updateToCalDate(date);

			var objFromDate = document.changeFlightDatesForm.F_fromCalDate.value;
			var fromDate = new Date(objFromDate);

			var diff = date.valueOf() - fromDate.valueOf();
			var daysDiff = Math.round( (diff / (1000 * 60 * 60 * 24)) + 0.5);
			
			if ( daysDiff >= 0 )
			{
                F_recalcNumNights();
			}
            else
            {
                F_recalcFromDate();
            }
		} 

		// allows other methods to modify toDD by passing a Date d
		function F_updateToDD(d)
		{
			var date = d.getDate();
			var obj = document.changeFlightDatesForm.toDD;
			for ( i = 0; i < obj.length; i++ )
			{
				if ( obj.options[i].value == date ) {
					obj.options[i].selected = true;
				}
			}
		} 

		// reacts to changes in the toMM field
		function F_changeToMM()
		{
			var obj = document.changeFlightDatesForm.toMM;
			F_populateToDD();
			F_changeToDD();
		} 

		// allows other methods to modify toMM by passing a Date d
		function F_updateToMM(d)
		{
			var dateText = d.getMonth() + "-" + d.getFullYear();
			var obj = document.changeFlightDatesForm.toMM;
			for ( i = 0; i < obj.length; i++ )
			{
				if ( obj.options[i].value == dateText )
				{
					obj.options[i].selected = true;
					break;
				}
			}
		} 

		// allows other methods to modify toDate by passing a Date d.
		// toDate format is YYYYMMDD
		function F_updateToDate(d)
		{
			//console.log("F_updateToDate:d=" + d);
			var month = d.getMonth() + 1;
			month = "0" + month;
			month = month.slice(month.length - 2);
			var day = d.getDate();
			day = "0" + day;
			day = day.slice(day.length - 2);
			var dateText = "" + d.getFullYear() + month + day;
			document.changeFlightDatesForm.dateSelectedTo.value = dateText;
		} 

		// takes the calendar date and populates the toDD and toMM parts.  The Calendar date by default is MM/DD/YYYY
		function F_changeToCalDate()
		{
			//console.log("F_changeToCalDate");
			var objDate = document.changeFlightDatesForm.F_toCalDate.value;
			var d = new Date(objDate);
			F_updateToDate(d);
			F_updateToMM(d);
			F_populateToDD();
			F_updateToDD(d);
			F_changeToDD();
		} 

		// allows other methods to modify toCalDate by passing a Date d.
		// calToDate format is yyyy/mm/dd
		function F_updateToCalDate(d)
		{
			var month = d.getMonth() + 1;
			var day = d.getDate();
			var dateText = "" + d.getFullYear() + "/" + month + "/" + day;
			document.changeFlightDatesForm.F_toCalDate.value = dateText;
		} 

		// modifies the toDate based on the from date
		function F_changeNights()
		{
			F_recalcToDate();
		}
		
		// modifies the toDate based on the from date and number of nights
		function F_recalcToDate()
		{
			var numNights = document.changeFlightDatesForm.numNights.value;
			//console.log("recalcToDate:numNights = " + numNights);
			if ( numNights >= 0 )
			{
				// recalc the to Date
				var fromDateObj = document.changeFlightDatesForm.F_fromCalDate.value;
				var fromDate = new Date(fromDateObj);
				var toDateVal = fromDate.valueOf() + ( numNights * 1000 * 60 * 60 * 24);
				var toDate = new Date(toDateVal);
				F_updateToMM(toDate);
				F_populateToDD();
				F_updateToDD(toDate);
				F_changeToDD();
			}
		}
		
	    // modifies the fromDate based on the to date and number of nights
        function F_recalcFromDate()
        {
            var numNights = document.changeFlightDatesForm.numNights.value;
            // recalc the from Date
            var toDateObj = document.changeFlightDatesForm.F_toCalDate.value;
            var toDate = new Date(toDateObj);
            var fromDateVal = toDate.valueOf() - ( numNights * 1000 * 60 * 60 * 24);
            var fromDate = new Date(fromDateVal);
            if ( fromDate < F_minFromDate ) 
            {
                fromDate = F_minFromDate;
                var diff = toDate.valueOf() - fromDate.valueOf();
                var daysDiff = Math.round(diff / (1000 * 60 * 60 * 24));
                
                if ( daysDiff > 0 )
                {
                    document.changeFlightDatesForm.numNights.value = daysDiff;
                }
            }
            F_updateFromMM(fromDate);
            F_populateFromDD();
            F_updateFromDD(fromDate);
            F_changeFromDD();
        }

	    // modifies the numNights based on the from date and the to date
        function F_recalcNumNights()
        {
            var fromDateObj = document.changeFlightDatesForm.F_fromCalDate.value;
            var fromDate = new Date(fromDateObj);
            var toDateObj = document.changeFlightDatesForm.F_toCalDate.value;
            var toDate = new Date(toDateObj);
            var diff = toDate.valueOf() - fromDate.valueOf();
            var daysDiff = Math.round(diff / (1000 * 60 * 60 * 24));
            //console.log("recalcNumNights:fromDateObj=" + fromDateObj + ", toDateObj=" + toDateObj + ",daysDiff=" + daysDiff);
            if ( daysDiff > 0 )
                document.changeFlightDatesForm.numNights.value = daysDiff;
            else
                document.changeFlightDatesForm.numNights.value = 0;
            //console.log("recalcNumNights:numNights=" + document.changeFlightDatesForm.numNights.value);
        }

        function F_departDateStatus(date)
		{
			if (date.getTime() < F_minFromDate.getTime() || date.getTime() >= F_maxFromDate.getTime()) {
				//console.log("departDateStatus:date=" + date + "(" + date.getTime() + "), F_minFromDate=" + F_minFromDate + "(" + F_minFromDate.getTime() + "), F_maxFromDate=" + F_maxFromDate + ":disable");
				return true; // true says "disable"
			}
			else {
				//console.log("departDateStatus:date=" + date + ", F_minFromDate=" + F_minFromDate + ", F_maxFromDate=" + F_maxFromDate + ":enable");
				return false; // leave other dates enabled
			}
		}

		function F_returnDateStatus(date)
		{
			if (date.getTime() < F_minToDate.getTime() || date.getTime() >= F_maxToDate.getTime()) {
				//console.log("departDateStatus:date=" + date + "(" + date.getTime() + "), F_minToDate=" + F_minToDate + "(" + F_minToDate.getTime() + "), F_maxToDate=" + F_maxToDate + ":disable");
				return true; // true says "disable"
			}
			else {
				//console.log("departDateStatus:date=" + date + ", F_minToDate=" + F_minToDate + ", F_maxToDate=" + F_maxToDate + ":enable");
				return false; // leave other dates enabled
			}
		}

		function F_validateAndSubmitSearchForm()
		{
			var fromCity = document.changeFlightDatesForm.from[document.changeFlightDatesForm.from.selectedIndex].value;
			var toCity = document.changeFlightDatesForm.to[document.changeFlightDatesForm.to.selectedIndex].value;
			var flightClass = document.changeFlightDatesForm.flightclass[document.changeFlightDatesForm.flightclass.selectedIndex].value;
			var numAdults = parseInt(document.changeFlightDatesForm.adults[document.changeFlightDatesForm.adults.selectedIndex].value);
			var numChildren = parseInt(document.changeFlightDatesForm.children[document.changeFlightDatesForm.children.selectedIndex].value);
			if ( fromCity == "" ) {
				alert("From city must be selected");
			} 
			else if ( toCity == "" ) {
				alert("To city must be selected");
			} 
			else if ( flightClass == "" ) {
				alert("Class must be selected");
			} 
			else if ( fromCity == toCity ) {
				alert("Departure and destination are the same");
			} 
			else if ( (numAdults + numChildren) > 9 ) {
				alert("A maximum of nine passengers can be booked");
			} 
			else {
				document.changeFlightDatesForm.submit();
			}
		}

		function F_changeReturn()
		{
			if ( document.changeFlightDatesForm.returnFlights.checked ) 
			{
				document.getElementById("returnDate").style.visibility = 'visible';
			}
			else
			{
				document.getElementById("returnDate").style.visibility = 'hidden';
			}
		}
		
		function F_init()
		{
			var fromMMDate = new Date(F_minFromDate);
			F_populateFromMM(fromMMDate);
			var toMMDate = new Date(F_minFromDate);
			toMMDate.setDate(toMMDate.getDate());	
			F_populateToMM(toMMDate);
			F_recalcNumNights();
            F_setCountries();
            F_setCities();
            document.changeFlightDatesForm.from.selectedIndex = 0;
            document.changeFlightDatesForm.to.selectedIndex = 0;
            F_changeFromDD();
		}
		
		function F_setCities()
		{
			F_setFromCities();
			F_setToCities();
		}
				
		function F_setFromCities()
		{
			var objFrom = document.changeFlightDatesForm.from;
			objFrom.length = 0;
			objFrom.options[0] = new Option('Airport', '');
			for ( i = 0; i < airportlocations.length; i++ )
			{
				if ( airportlocations[i].countryCode == 'AU' ) {
					objFrom.options[objFrom.options.length] = new Option(airportlocations[i].city + ' (' + airportlocations[i].code + ')', airportlocations[i].code);
				}
			}
		}
		
		function F_setToCities()
		{
			var objTo = document.changeFlightDatesForm.to;
			var objToCountry = document.changeFlightDatesForm.toCountry;
			if ( objToCountry.options[objToCountry.selectedIndex].value != '' )
			{
				objTo.length = 0;
				objTo.options[0] = new Option('Airport', '');
				var toCountryCode = objToCountry.options[objToCountry.selectedIndex].value;
				if ( toCountryCode == 'AU' ) {
					document.getElementById('flexDL').style.display = "none";
				} else {
					document.getElementById('flexDL').style.display = "";
				}
				for ( i = 0; i < airportlocations.length; i++ )
				{
					if ( airportlocations[i].countryCode == toCountryCode ) {
						objTo.options[objTo.options.length] = new Option(airportlocations[i].city + ' (' + airportlocations[i].code + ')', airportlocations[i].code);
					}
				}
			}
		}
		
		function F_setCountries()
		{
			var objTo = document.changeFlightDatesForm.toCountry;
			objTo.length = 0;
			objTo.options[0] = new Option('Country', '');
			for ( i = 0; i < countries.length; i++ )
			{
				objTo.options[i+1] = new Option(countries[i].countryName, countries[i].countryCode);
			}
		}


		function airportlocation(code, city, airport, countryCode)
		{
			this.code = code;
			this.city = city;
			this.airport = airport;
			this.countryCode = countryCode;
		}
		var airportlocations = new Array();
		function country(countryCode, countryName)
		{
			this.countryCode = countryCode;
			this.countryName = countryName;
		}
		var airportlocations = new Array();
		var countries = new Array();
		countries[countries.length] = new country("AU","Australia");
		countries[countries.length] = new country("NZ","New Zealand");
		countries[countries.length] = new country("AF","Afghanistan");
		countries[countries.length] = new country("AL","Albania");
		countries[countries.length] = new country("DZ","Algeria");
		countries[countries.length] = new country("AS","American Samoa");
		countries[countries.length] = new country("AO","Angola");
		countries[countries.length] = new country("AI","Anguilla");
		countries[countries.length] = new country("AG","Antigua & Barbuda");
		countries[countries.length] = new country("AR","Argentina");
		countries[countries.length] = new country("AM","Armenia");
		countries[countries.length] = new country("AW","Aruba");
		countries[countries.length] = new country("AT","Austria");
		countries[countries.length] = new country("AZ","Azerbaijan");
		countries[countries.length] = new country("BS","Bahamas");
		countries[countries.length] = new country("BH","Bahrain");
		countries[countries.length] = new country("BD","Bangladesh");
		countries[countries.length] = new country("BB","Barbados");
		countries[countries.length] = new country("BY","Belarus");
		countries[countries.length] = new country("BZ","Belize");
		countries[countries.length] = new country("BE","Belgium");
		countries[countries.length] = new country("BJ","Benin");
		countries[countries.length] = new country("BM","Bermuda");
		countries[countries.length] = new country("BT","Bhutan");
		countries[countries.length] = new country("BO","Bolivia");
		countries[countries.length] = new country("BA","Bosnia and Herzegovina");
		countries[countries.length] = new country("BW","Botswana");
		countries[countries.length] = new country("BR","Brazil");
		countries[countries.length] = new country("VG","British Virgin Islands");
		countries[countries.length] = new country("BN","Brunei Darussalam");
		countries[countries.length] = new country("BG","Bulgaria");
		countries[countries.length] = new country("BF","Burkina Faso");
		countries[countries.length] = new country("BI","Burundi");
		countries[countries.length] = new country("KH","Cambodia");
		countries[countries.length] = new country("CM","Cameroon");
		countries[countries.length] = new country("CA","Canada");
		countries[countries.length] = new country("CV","Cape Verde");
		countries[countries.length] = new country("KY","Cayman Islands");
		countries[countries.length] = new country("TD","Chad");
		countries[countries.length] = new country("CL","Chile");
		countries[countries.length] = new country("CN","China");
		countries[countries.length] = new country("CX","Christmas Island");
		countries[countries.length] = new country("CC","Cocos (Keeling) Islands");
		countries[countries.length] = new country("CO","Colombia");
		countries[countries.length] = new country("KM","Comoros");
		countries[countries.length] = new country("CG","Congo");
		countries[countries.length] = new country("CD","Congo, Democratic Republic");
		countries[countries.length] = new country("CK","Cook Islands");
		countries[countries.length] = new country("CR","Costa Rica");
		countries[countries.length] = new country("CI","Cote D'Ivoire (Ivory Coast)");
		countries[countries.length] = new country("HR","Croatia");
		countries[countries.length] = new country("CU","Cuba");
		countries[countries.length] = new country("CY","Cyprus");
		countries[countries.length] = new country("CZ","Czech Republic");
		countries[countries.length] = new country("DK","Denmark");
		countries[countries.length] = new country("DJ","Djibouti");
		countries[countries.length] = new country("DM","Dominica");
		countries[countries.length] = new country("DO","Dominican Republic");
		countries[countries.length] = new country("TP","East Timor");
		countries[countries.length] = new country("EC","Ecuador");
		countries[countries.length] = new country("EG","Egypt");
		countries[countries.length] = new country("SV","El Salvador");
		countries[countries.length] = new country("GQ","Equatorial Guinea");
		countries[countries.length] = new country("ER","Eritrea");
		countries[countries.length] = new country("EE","Estonia");
		countries[countries.length] = new country("ET","Ethiopia");
		countries[countries.length] = new country("FK","Falkland Islands (Malvinas)");
		countries[countries.length] = new country("FO","Faroe Islands");
		countries[countries.length] = new country("FJ","Fiji");
		countries[countries.length] = new country("FI","Finland");
		countries[countries.length] = new country("FR","France");
		countries[countries.length] = new country("PF","French Polynesia");
		countries[countries.length] = new country("GA","Gabon");
		countries[countries.length] = new country("GM","Gambia");
		countries[countries.length] = new country("GE","Georgia");
		countries[countries.length] = new country("DE","Germany");
		countries[countries.length] = new country("GH","Ghana");
		countries[countries.length] = new country("GI","Gibraltar");
		countries[countries.length] = new country("GR","Greece");
		countries[countries.length] = new country("GL","Greenland");
		countries[countries.length] = new country("GD","Grenada");
		countries[countries.length] = new country("GP","Guadeloupe");
		countries[countries.length] = new country("GU","Guam");
		countries[countries.length] = new country("GT","Guatemala");
		countries[countries.length] = new country("GN","Guinea");
		countries[countries.length] = new country("GY","Guyana");
		countries[countries.length] = new country("HT","Haiti");
		countries[countries.length] = new country("HN","Honduras");
		countries[countries.length] = new country("HK","Hong Kong");
		countries[countries.length] = new country("HU","Hungary");
		countries[countries.length] = new country("IS","Iceland");
		countries[countries.length] = new country("IN","India");
		countries[countries.length] = new country("ID","Indonesia");
		countries[countries.length] = new country("IR","Iran");
		countries[countries.length] = new country("IE","Ireland");
		countries[countries.length] = new country("IL","Israel");
		countries[countries.length] = new country("IT","Italy");
		countries[countries.length] = new country("JM","Jamaica");
		countries[countries.length] = new country("JP","Japan");
		countries[countries.length] = new country("JO","Jordan");
		countries[countries.length] = new country("KZ","Kazakhstan");
		countries[countries.length] = new country("KE","Kenya");
		countries[countries.length] = new country("KI","Kiribati");
		countries[countries.length] = new country("KR","Korea, South");
		countries[countries.length] = new country("KW","Kuwait");
		countries[countries.length] = new country("KG","Kyrgyzstan");
		countries[countries.length] = new country("LA","Laos");
		countries[countries.length] = new country("LV","Latvia");
		countries[countries.length] = new country("LB","Lebanon");
		countries[countries.length] = new country("LS","Lesotho");
		countries[countries.length] = new country("LR","Liberia");
		countries[countries.length] = new country("LY","Libya");
		countries[countries.length] = new country("LT","Lithuania");
		countries[countries.length] = new country("LU","Luxembourg");
		countries[countries.length] = new country("MO","Macau");
		countries[countries.length] = new country("MK","Macedonia ");
		countries[countries.length] = new country("MG","Madagascar");
		countries[countries.length] = new country("MW","Malawi");
		countries[countries.length] = new country("MY","Malaysia");
		countries[countries.length] = new country("ML","Mali");
		countries[countries.length] = new country("MV","Maldives");
		countries[countries.length] = new country("MT","Malta");
		countries[countries.length] = new country("MH","Marshall Islands");
		countries[countries.length] = new country("MQ","Martinique");
		countries[countries.length] = new country("MR","Mauritania");
		countries[countries.length] = new country("MU","Mauritius");
		countries[countries.length] = new country("MX","Mexico");
		countries[countries.length] = new country("FM","Micronesia");
		countries[countries.length] = new country("MD","Moldova");
		countries[countries.length] = new country("MN","Mongolia");
		countries[countries.length] = new country("ME","Montenegro");
		countries[countries.length] = new country("MA","Morocco");
		countries[countries.length] = new country("MZ","Mozambique");
		countries[countries.length] = new country("MM","Myanmar");
		countries[countries.length] = new country("NA","Namibia");
		countries[countries.length] = new country("NR","Nauru");
		countries[countries.length] = new country("NP","Nepal");
		countries[countries.length] = new country("NL","Netherlands");
		countries[countries.length] = new country("AN","Netherlands Antilles");
		countries[countries.length] = new country("NC","New Caledonia");
		countries[countries.length] = new country("NI","Nicaragua");
		countries[countries.length] = new country("NE","Niger");
		countries[countries.length] = new country("NG","Nigeria");
		countries[countries.length] = new country("NU","Niue");
		countries[countries.length] = new country("MP","Northern Mariana Islands");
		countries[countries.length] = new country("NO","Norway");
		countries[countries.length] = new country("OM","Oman");
		countries[countries.length] = new country("PK","Pakistan");
		countries[countries.length] = new country("PW","Palau");
		countries[countries.length] = new country("PA","Panama");
		countries[countries.length] = new country("PG","Papua New Guinea");
		countries[countries.length] = new country("PY","Paraguay");
		countries[countries.length] = new country("PE","Peru");
		countries[countries.length] = new country("PH","Philippines");
		countries[countries.length] = new country("PL","Poland");
		countries[countries.length] = new country("PT","Portugal");
		countries[countries.length] = new country("PR","Puerto Rico");
		countries[countries.length] = new country("QA","Qatar");
		countries[countries.length] = new country("RE","Reunion");
		countries[countries.length] = new country("RO","Romania");
		countries[countries.length] = new country("RU","Russian Federation");
		countries[countries.length] = new country("RW","Rwanda");
		countries[countries.length] = new country("KN","Saint Kitts and Nevis");
		countries[countries.length] = new country("LC","Saint Lucia");
		countries[countries.length] = new country("VC","Saint Vincent & the Grenadines");
		countries[countries.length] = new country("WS","Samoa");
		countries[countries.length] = new country("ST","Sao Tome & Principe");
		countries[countries.length] = new country("SA","Saudi Arabia");
		countries[countries.length] = new country("RS","Serbia");
		countries[countries.length] = new country("SN","Senegal");
		countries[countries.length] = new country("SC","Seychelles");
		countries[countries.length] = new country("SL","Sierra Leone");
		countries[countries.length] = new country("SG","Singapore");
		countries[countries.length] = new country("SK","Slovakia");
		countries[countries.length] = new country("SI","Slovenia");
		countries[countries.length] = new country("SB","Solomon Islands");
		countries[countries.length] = new country("SO","Somalia");
		countries[countries.length] = new country("ZA","South Africa");
		countries[countries.length] = new country("ES","Spain");
		countries[countries.length] = new country("LK","Sri Lanka");
		countries[countries.length] = new country("SD","Sudan");
		countries[countries.length] = new country("SR","Suriname");
		countries[countries.length] = new country("SZ","Swaziland");
		countries[countries.length] = new country("SE","Sweden");
		countries[countries.length] = new country("CH","Switzerland");
		countries[countries.length] = new country("SY","Syria");
		countries[countries.length] = new country("TW","Taiwan");
		countries[countries.length] = new country("TJ","Tajikistan");
		countries[countries.length] = new country("TZ","Tanzania");
		countries[countries.length] = new country("TH","Thailand");
		countries[countries.length] = new country("TG","Togo");
		countries[countries.length] = new country("TO","Tonga");
		countries[countries.length] = new country("TT","Trinidad & Tobago");
		countries[countries.length] = new country("TN","Tunisia");
		countries[countries.length] = new country("TR","Turkey");
		countries[countries.length] = new country("TM","Turkmenistan");
		countries[countries.length] = new country("TC","Turks & Caicos Islands");
		countries[countries.length] = new country("TV","Tuvalu");
		countries[countries.length] = new country("UG","Uganda");
		countries[countries.length] = new country("UA","Ukraine");
		countries[countries.length] = new country("AE","United Arab Emirates");
		countries[countries.length] = new country("GB","United Kingdom");
		countries[countries.length] = new country("US","United States");
		countries[countries.length] = new country("UY","Uruguay");
		countries[countries.length] = new country("VI","US Virgin Islands");
		countries[countries.length] = new country("UZ","Uzbekistan");
		countries[countries.length] = new country("VU","Vanuatu");
		countries[countries.length] = new country("VE","Venezuela");
		countries[countries.length] = new country("VN","Vietnam");
		countries[countries.length] = new country("WF","Wallis & Futuna Islands");
		countries[countries.length] = new country("YE","Yemen");
		countries[countries.length] = new country("ZR","Zaire");
		countries[countries.length] = new country("ZM","Zambia");
		countries[countries.length] = new country("ZW","Zimbabwe");

		airportlocations[airportlocations.length] = new airportlocation("ADL","Adelaide","Adelaide","AU");
		airportlocations[airportlocations.length] = new airportlocation("WSY","Airlie Beach","Airlie Beach","AU");
		airportlocations[airportlocations.length] = new airportlocation("ALH","Albany","Albany","AU");
		airportlocations[airportlocations.length] = new airportlocation("ABX","Albury","Albury","AU");
		airportlocations[airportlocations.length] = new airportlocation("ASP","Alice Springs","Alice Springs","AU");
		airportlocations[airportlocations.length] = new airportlocation("ARM","Armidale","Armidale","AU");
		airportlocations[airportlocations.length] = new airportlocation("AYQ","Ayers Rock","Ayers Rock","AU");
		airportlocations[airportlocations.length] = new airportlocation("AYR","Ayr Au","Ayr Au","AU");
		airportlocations[airportlocations.length] = new airportlocation("BSJ","Bairnsdale","Bairnsdale","AU");
		airportlocations[airportlocations.length] = new airportlocation("BNK","Ballina","Ballina","AU");
		airportlocations[airportlocations.length] = new airportlocation("ABM","Bamaga","Bamaga","AU");
		airportlocations[airportlocations.length] = new airportlocation("BWU","Bankstown","Bankstown","AU");
		airportlocations[airportlocations.length] = new airportlocation("BHS","Bathurst","Bathurst","AU");
		airportlocations[airportlocations.length] = new airportlocation("BRT","Bathurst Isl","Bathurst Isl","AU");
		airportlocations[airportlocations.length] = new airportlocation("ZBL","Biloela","Biloela","AU");
		airportlocations[airportlocations.length] = new airportlocation("BLT","Blackwater","Blackwater","AU");
		airportlocations[airportlocations.length] = new airportlocation("BOX","Borroloola","Borroloola","AU");
		airportlocations[airportlocations.length] = new airportlocation("BRK","Bourke","Bourke","AU");
		airportlocations[airportlocations.length] = new airportlocation("BWQ","Brewarrina","Brewarrina","AU");
		airportlocations[airportlocations.length] = new airportlocation("BNE","Brisbane","Brisbane","AU");
		airportlocations[airportlocations.length] = new airportlocation("BHQ","Broken Hill","Broken Hill","AU");
		airportlocations[airportlocations.length] = new airportlocation("BME","Broome","Broome","AU");
		airportlocations[airportlocations.length] = new airportlocation("BUY","Bunbury","Bunbury","AU");
		airportlocations[airportlocations.length] = new airportlocation("BDB","Bundaberg","Bundaberg","AU");
		airportlocations[airportlocations.length] = new airportlocation("BWT","Burnie","Burnie","AU");
		airportlocations[airportlocations.length] = new airportlocation("BQB","Busselton","Busselton","AU");
		airportlocations[airportlocations.length] = new airportlocation("CNS","Cairns","Cairns","AU");
		airportlocations[airportlocations.length] = new airportlocation("CBR","Canberra","Canberra","AU");
		airportlocations[airportlocations.length] = new airportlocation("CVQ","Carnarvon","Carnarvon","AU");
		airportlocations[airportlocations.length] = new airportlocation("CSI","Casino","Casino","AU");
		airportlocations[airportlocations.length] = new airportlocation("CED","Ceduna","Ceduna","AU");
		airportlocations[airportlocations.length] = new airportlocation("CES","Cessnock","Cessnock","AU");
		airportlocations[airportlocations.length] = new airportlocation("CTL","Charleville","Charleville","AU");
		airportlocations[airportlocations.length] = new airportlocation("CMQ","Clermont","Clermont","AU");
		airportlocations[airportlocations.length] = new airportlocation("CNJ","Cloncurry","Cloncurry","AU");
		airportlocations[airportlocations.length] = new airportlocation("CAZ","Cobar","Cobar","AU");
		airportlocations[airportlocations.length] = new airportlocation("CFS","Coffs Harbour","Coffs Harbour","AU");
		airportlocations[airportlocations.length] = new airportlocation("XCO","Colac","Colac","AU");
		airportlocations[airportlocations.length] = new airportlocation("KCE","Collinsville","Collinsville","AU");
		airportlocations[airportlocations.length] = new airportlocation("CPD","Coober Pedy","Coober Pedy","AU");
		airportlocations[airportlocations.length] = new airportlocation("CDA","Cooinda","Cooinda","AU");
		airportlocations[airportlocations.length] = new airportlocation("CTN","Cooktown","Cooktown","AU");
		airportlocations[airportlocations.length] = new airportlocation("OOM","Cooma","Cooma","AU");
		airportlocations[airportlocations.length] = new airportlocation("COJ","Coonabarabrn","Coonabarabrn","AU");
		airportlocations[airportlocations.length] = new airportlocation("CNB","Coonamble","Coonamble","AU");
		airportlocations[airportlocations.length] = new airportlocation("CWT","Cowra","Cowra","AU");
		airportlocations[airportlocations.length] = new airportlocation("CUG","Cudal","Cudal","AU");
		airportlocations[airportlocations.length] = new airportlocation("DBY","Dalby","Dalby","AU");
		airportlocations[airportlocations.length] = new airportlocation("DRW","Darwin","Darwin","AU");
		airportlocations[airportlocations.length] = new airportlocation("DDI","Daydream Island","Daydream Island","AU");
		airportlocations[airportlocations.length] = new airportlocation("DNQ","Deniliquin","Deniliquin","AU");
		airportlocations[airportlocations.length] = new airportlocation("DRB","Derby","Derby","AU");
		airportlocations[airportlocations.length] = new airportlocation("DPO","Devonport","Devonport","AU");
		airportlocations[airportlocations.length] = new airportlocation("DOX","Dongara","Dongara","AU");
		airportlocations[airportlocations.length] = new airportlocation("DBO","Dubbo","Dubbo","AU");
		airportlocations[airportlocations.length] = new airportlocation("DKI","Dunk Island","Dunk Island","AU");
		airportlocations[airportlocations.length] = new airportlocation("ECH","Echuca","Echuca","AU");
		airportlocations[airportlocations.length] = new airportlocation("EMD","Emerald","Emerald","AU");
		airportlocations[airportlocations.length] = new airportlocation("EPR","Esperance","Esperance","AU");
		airportlocations[airportlocations.length] = new airportlocation("EXM","Exmouth Gulf","Exmouth Gulf","AU");
		airportlocations[airportlocations.length] = new airportlocation("FOT","Forster","Forster","AU");
		airportlocations[airportlocations.length] = new airportlocation("JFM","Fremantle","Fremantle","AU");
		airportlocations[airportlocations.length] = new airportlocation("GEX","Geelong","Geelong","AU");
		airportlocations[airportlocations.length] = new airportlocation("GET","Geraldton","Geraldton","AU");
		airportlocations[airportlocations.length] = new airportlocation("GLT","Gladstone","Gladstone","AU");
		airportlocations[airportlocations.length] = new airportlocation("GLI","Glen Innes","Glen Innes","AU");
		airportlocations[airportlocations.length] = new airportlocation("OOL","Gold Coast (Coolangatta)","Coolangatta","AU");
		airportlocations[airportlocations.length] = new airportlocation("GOO","Goondiwindi","Goondiwindi","AU");
		airportlocations[airportlocations.length] = new airportlocation("GOV","Gove","Gove","AU");
		airportlocations[airportlocations.length] = new airportlocation("GFN","Grafton","Grafton","AU");
		airportlocations[airportlocations.length] = new airportlocation("GFF","Griffith","Griffith","AU");
		airportlocations[airportlocations.length] = new airportlocation("GUH","Gunnedah","Gunnedah","AU");
		airportlocations[airportlocations.length] = new airportlocation("GYP","Gympie","Gympie","AU");
		airportlocations[airportlocations.length] = new airportlocation("HTI","Hamilton Island","Hamilton Island","AU");
		airportlocations[airportlocations.length] = new airportlocation("HIS","Hayman Island","Hayman Island","AU");
		airportlocations[airportlocations.length] = new airportlocation("HVB","Hervey Bay","Hervey Bay","AU");
		airportlocations[airportlocations.length] = new airportlocation("HBA","Hobart","Hobart","AU");
		airportlocations[airportlocations.length] = new airportlocation("HID","Horn Island","Horn Island","AU");
		airportlocations[airportlocations.length] = new airportlocation("IVR","Inverell","Inverell","AU");
		airportlocations[airportlocations.length] = new airportlocation("JAB","Jabiru","Jabiru","AU");
		airportlocations[airportlocations.length] = new airportlocation("KAX","Kalbarri","Kalbarri","AU");
		airportlocations[airportlocations.length] = new airportlocation("KGI","Kalgoorlie","Kalgoorlie","AU");
		airportlocations[airportlocations.length] = new airportlocation("KTA","Karratha","Karratha","AU");
		airportlocations[airportlocations.length] = new airportlocation("KTR","Katherine","Katherine","AU");
		airportlocations[airportlocations.length] = new airportlocation("KPS","Kempsey","Kempsey","AU");
		airportlocations[airportlocations.length] = new airportlocation("KNS","King Island","King Island","AU");
		airportlocations[airportlocations.length] = new airportlocation("KBJ","Kings Canyon","Kings Canyon","AU");
		airportlocations[airportlocations.length] = new airportlocation("KGC","Kingscote","Kingscote","AU");
		airportlocations[airportlocations.length] = new airportlocation("KNX","Kununurra","Kununurra","AU");
		airportlocations[airportlocations.length] = new airportlocation("LST","Launceston","Launceston","AU");
		airportlocations[airportlocations.length] = new airportlocation("LVO","Laverton","Laverton","AU");
		airportlocations[airportlocations.length] = new airportlocation("LEA","Learmonth","Learmonth","AU");
		airportlocations[airportlocations.length] = new airportlocation("QLE","Leeton","Leeton","AU");
		airportlocations[airportlocations.length] = new airportlocation("LER","Leinster","Leinster","AU");
		airportlocations[airportlocations.length] = new airportlocation("LNO","Leonora","Leonora","AU");
		airportlocations[airportlocations.length] = new airportlocation("LHG","Lightning Ridge","Lightning Ridge","AU");
		airportlocations[airportlocations.length] = new airportlocation("LSY","Lismore","Lismore","AU");
		airportlocations[airportlocations.length] = new airportlocation("HAP","Long Island","Long Island","AU");
		airportlocations[airportlocations.length] = new airportlocation("LRE","Longreach","Longreach","AU");
		airportlocations[airportlocations.length] = new airportlocation("LDH","Lord Howe Island","Lord Howe Island","AU");
		airportlocations[airportlocations.length] = new airportlocation("MKY","Mackay","Mackay","AU");
		airportlocations[airportlocations.length] = new airportlocation("MTL","Maitland","Maitland","AU");
		airportlocations[airportlocations.length] = new airportlocation("MQZ","Margaret River","Margaret River","AU");
		airportlocations[airportlocations.length] = new airportlocation("MGV","Margaret River Station","Margaret River Station","AU");
		airportlocations[airportlocations.length] = new airportlocation("MBH","Maryborough","Maryborough","AU");
		airportlocations[airportlocations.length] = new airportlocation("MKR","Meekathara","Meekathara","AU");
		airportlocations[airportlocations.length] = new airportlocation("MEL","Melbourne (Tullamarine)","Melbourne (Tullamarine)","AU");
		airportlocations[airportlocations.length] = new airportlocation("AVV","Melbourne (Avalon)","Melbourne (Avalon)","AU");
		airportlocations[airportlocations.length] = new airportlocation("MIM","Merimbula","Merimbula","AU");
		airportlocations[airportlocations.length] = new airportlocation("MMM","Middlemount","Middlemount","AU");
		airportlocations[airportlocations.length] = new airportlocation("MQL","Mildura","Mildura","AU");
		airportlocations[airportlocations.length] = new airportlocation("MJK","Monkey Mia","Monkey Mia","AU");
		airportlocations[airportlocations.length] = new airportlocation("MNQ","Monto","Monto","AU");
		airportlocations[airportlocations.length] = new airportlocation("MBW","Moorabbin","Moorabbin","AU");
		airportlocations[airportlocations.length] = new airportlocation("MRZ","Moree","Moree","AU");
		airportlocations[airportlocations.length] = new airportlocation("MYA","Moruya","Moruya","AU");
		airportlocations[airportlocations.length] = new airportlocation("MGB","Mount Gambier","Mount Gambier","AU");
		airportlocations[airportlocations.length] = new airportlocation("MHU","Mount Hotham","Mount Hotham","AU");
		airportlocations[airportlocations.length] = new airportlocation("ISA","Mount Isa","Mount Isa","AU");
		airportlocations[airportlocations.length] = new airportlocation("MMG","Mount Magnet","Mount Magnet","AU");
		airportlocations[airportlocations.length] = new airportlocation("ZNE","Mount Newman","Mount Newman","AU");
		airportlocations[airportlocations.length] = new airportlocation("DGE","Mudgee","Mudgee","AU");
		airportlocations[airportlocations.length] = new airportlocation("NAA","Narrabri","Narrabri","AU");
		airportlocations[airportlocations.length] = new airportlocation("NRA","Narrandera","Narrandera","AU");
		airportlocations[airportlocations.length] = new airportlocation("NTL","Newcastle","Newcastle","AU");
		airportlocations[airportlocations.length] = new airportlocation("NSA","Noosa","Noosa","AU");
		airportlocations[airportlocations.length] = new airportlocation("NLK","Norfolk Island","Norfolk Island","AU");
		airportlocations[airportlocations.length] = new airportlocation("NSM","Norseman","Norseman","AU");
		airportlocations[airportlocations.length] = new airportlocation("NOA","Nowra","Nowra","AU");
		airportlocations[airportlocations.length] = new airportlocation("NUR","Nullarbor","Nullarbor","AU");
		airportlocations[airportlocations.length] = new airportlocation("NYN","Nyngan","Nyngan","AU");
		airportlocations[airportlocations.length] = new airportlocation("OLP","Olympic Dam","Olympic Dam","AU");
		airportlocations[airportlocations.length] = new airportlocation("OAG","Orange","Orange","AU");
		airportlocations[airportlocations.length] = new airportlocation("ORS","Orpheus Island","Orpheus Island","AU");
		airportlocations[airportlocations.length] = new airportlocation("PBO","Paraburdoo","Paraburdoo","AU");
		airportlocations[airportlocations.length] = new airportlocation("PKE","Parkes","Parkes","AU");
		airportlocations[airportlocations.length] = new airportlocation("PER","Perth","Perth","AU");
		airportlocations[airportlocations.length] = new airportlocation("PUG","Port Augusta","Port Augusta","AU");
		airportlocations[airportlocations.length] = new airportlocation("PTI","Port Douglas","Port Douglas","AU");
		airportlocations[airportlocations.length] = new airportlocation("PHE","Port Hedland","Port Hedland","AU");
		airportlocations[airportlocations.length] = new airportlocation("PLO","Port Lincoln","Port Lincoln","AU");
		airportlocations[airportlocations.length] = new airportlocation("PPI","Port Pirie","Port Pirie","AU");
		airportlocations[airportlocations.length] = new airportlocation("PTJ","Portland","Portland","AU");
		airportlocations[airportlocations.length] = new airportlocation("PPP","Proserpine","Proserpine","AU");
		airportlocations[airportlocations.length] = new airportlocation("PQQ","Pt Macquarie","Pt Macquarie","AU");
		airportlocations[airportlocations.length] = new airportlocation("UEE","Queenstown","Queenstown","AU");
		airportlocations[airportlocations.length] = new airportlocation("ULP","Quilpie","Quilpie","AU");
		airportlocations[airportlocations.length] = new airportlocation("UIR","Quirindi","Quirindi","AU");
		airportlocations[airportlocations.length] = new airportlocation("RMK","Renmark","Renmark","AU");
		airportlocations[airportlocations.length] = new airportlocation("ROK","Rockhampton","Rockhampton","AU");
		airportlocations[airportlocations.length] = new airportlocation("RMA","Roma","Roma","AU");
		airportlocations[airportlocations.length] = new airportlocation("RTS","Rottnest","Rottnest","AU");
		airportlocations[airportlocations.length] = new airportlocation("SXE","Sale","Sale","AU");
		airportlocations[airportlocations.length] = new airportlocation("NSO","Scone","Scone","AU");
		airportlocations[airportlocations.length] = new airportlocation("SHT","Shepparton","Shepparton","AU");
		airportlocations[airportlocations.length] = new airportlocation("JHQ","Shute Hrb","Shute Hrb","AU");
		airportlocations[airportlocations.length] = new airportlocation("SIX","Singleton","Singleton","AU");
		airportlocations[airportlocations.length] = new airportlocation("SOI","South Molle","South Molle","AU");
		airportlocations[airportlocations.length] = new airportlocation("SGO","St George","St George","AU");
		airportlocations[airportlocations.length] = new airportlocation("HLS","St Helens","St Helens","AU");
		airportlocations[airportlocations.length] = new airportlocation("SNH","Stanthorpe","Stanthorpe","AU");
		airportlocations[airportlocations.length] = new airportlocation("SRN","Strahan","Strahan","AU");
		airportlocations[airportlocations.length] = new airportlocation("MCY","Sunshine Coast","Maroochydore","AU");
		airportlocations[airportlocations.length] = new airportlocation("SWH","Swan Hill","Swan Hill","AU");
		airportlocations[airportlocations.length] = new airportlocation("SYD","Sydney","Sydney","AU");
		airportlocations[airportlocations.length] = new airportlocation("TMW","Tamworth","Tamworth","AU");
		airportlocations[airportlocations.length] = new airportlocation("TRO","Taree","Taree","AU");
		airportlocations[airportlocations.length] = new airportlocation("TCA","Tennant Creek","Tennant Creek","AU");
		airportlocations[airportlocations.length] = new airportlocation("THG","Thangool","Thangool","AU");
		airportlocations[airportlocations.length] = new airportlocation("TIS","Thursday Island","Thursday Island","AU");
		airportlocations[airportlocations.length] = new airportlocation("TCW","Tocumwal","Tocumwal","AU");
		airportlocations[airportlocations.length] = new airportlocation("TPR","Tom Price","Tom Price","AU");
		airportlocations[airportlocations.length] = new airportlocation("TWB","Toowoomba","Toowoomba","AU");
		airportlocations[airportlocations.length] = new airportlocation("TSV","Townsville","Townsville","AU");
		airportlocations[airportlocations.length] = new airportlocation("TGN","Traralgon","Traralgon","AU");
		airportlocations[airportlocations.length] = new airportlocation("WGA","Wagga Wagga","Wagga Wagga","AU");
		airportlocations[airportlocations.length] = new airportlocation("WGE","Walgett","Walgett","AU");
		airportlocations[airportlocations.length] = new airportlocation("WGT","Wangaratta","Wangaratta","AU");
		airportlocations[airportlocations.length] = new airportlocation("WMB","Warrnambool","Warrnambool","AU");
		airportlocations[airportlocations.length] = new airportlocation("WAZ","Warwick","Warwick","AU");
		airportlocations[airportlocations.length] = new airportlocation("WEW","Wee Waa","Wee Waa","AU");
		airportlocations[airportlocations.length] = new airportlocation("WEI","Weipa","Weipa","AU");
		airportlocations[airportlocations.length] = new airportlocation("WHL","Welshpool","Welshpool","AU");
		airportlocations[airportlocations.length] = new airportlocation("WYA","Whyalla","Whyalla","AU");
		airportlocations[airportlocations.length] = new airportlocation("WNR","Windorah","Windorah","AU");
		airportlocations[airportlocations.length] = new airportlocation("WOL","Wollongong","Wollongong","AU");
		airportlocations[airportlocations.length] = new airportlocation("WYN","Wyndham","Wyndham","AU");
		airportlocations[airportlocations.length] = new airportlocation("YNN","Yandicoogina","Yandicoogina","AU");
		airportlocations[airportlocations.length] = new airportlocation("NGA","Young","Young","AU");
		airportlocations[airportlocations.length] = new airportlocation("AKL","Auckland","Auckland","NZ");
		airportlocations[airportlocations.length] = new airportlocation("BHE","Blenheim Woodbourne","Blenheim Woodbourne","NZ");
		airportlocations[airportlocations.length] = new airportlocation("CHT","Chatham Island Karewa","Chatham Island Karewa","NZ");
		airportlocations[airportlocations.length] = new airportlocation("CHC","Christchurch","Christchurch","NZ");
		airportlocations[airportlocations.length] = new airportlocation("DUD","Dunedin Momona","Dunedin Momona","NZ");
		airportlocations[airportlocations.length] = new airportlocation("GIS","Gisborne","Gisborne","NZ");
		airportlocations[airportlocations.length] = new airportlocation("HLZ","Hamilton","Hamilton","NZ");
		airportlocations[airportlocations.length] = new airportlocation("HKK","Hokitika","Hokitika","NZ");
		airportlocations[airportlocations.length] = new airportlocation("IVC","Invercargill","Invercargill","NZ");
		airportlocations[airportlocations.length] = new airportlocation("KAT","Kaitaia","Kaitaia","NZ");
		airportlocations[airportlocations.length] = new airportlocation("KKE","Kerikeri","Kerikeri","NZ");
		airportlocations[airportlocations.length] = new airportlocation("NPE","Napier Hawkes Bay","Napier Hawkes Bay","NZ");
		airportlocations[airportlocations.length] = new airportlocation("NSN","Nelson","Nelson","NZ");
		airportlocations[airportlocations.length] = new airportlocation("NPL","New Plymouth","New Plymouth","NZ");
		airportlocations[airportlocations.length] = new airportlocation("OAM","Oamaru","Oamaru","NZ");
		airportlocations[airportlocations.length] = new airportlocation("PMR","Palmerston North","Palmerston North","NZ");
		airportlocations[airportlocations.length] = new airportlocation("ZQN","Queenstown","Queenstown","NZ");
		airportlocations[airportlocations.length] = new airportlocation("ROT","Rotorua","Rotorua","NZ");
		airportlocations[airportlocations.length] = new airportlocation("TUO","Taupo","Taupo","NZ");
		airportlocations[airportlocations.length] = new airportlocation("TRG","Tauranga","Tauranga","NZ");
		airportlocations[airportlocations.length] = new airportlocation("TIU","Timaru","Timaru","NZ");
		airportlocations[airportlocations.length] = new airportlocation("WKA","Wanaka","Wanaka","NZ");
		airportlocations[airportlocations.length] = new airportlocation("WAG","Wanganui","Wanganui","NZ");
		airportlocations[airportlocations.length] = new airportlocation("WLG","Wellington","Wellington","NZ");
		airportlocations[airportlocations.length] = new airportlocation("WSZ","Westport","Westport","NZ");
		airportlocations[airportlocations.length] = new airportlocation("WHK","Whakatane","Whakatane","NZ");
		airportlocations[airportlocations.length] = new airportlocation("WRE","Whangarei","Whangarei","NZ");
		airportlocations[airportlocations.length] = new airportlocation("KBL","Kabul","Khwaja Rawash","AF");
		airportlocations[airportlocations.length] = new airportlocation("TIA","Tirana","Rinas Mother Teresa","AL");
		airportlocations[airportlocations.length] = new airportlocation("ALG","Algiers","Houari Boumediene","DZ");
		airportlocations[airportlocations.length] = new airportlocation("BJA","Bejaia","Bejaia","DZ");
		airportlocations[airportlocations.length] = new airportlocation("DJG","Djanet","Inedbirenne","DZ");
		airportlocations[airportlocations.length] = new airportlocation("HME","Hassi Messaoud","Oued Irara Apt","DZ");
		airportlocations[airportlocations.length] = new airportlocation("ORN","Oran","Es Senia","DZ");
		airportlocations[airportlocations.length] = new airportlocation("TIN","Tindouf","Tindouf","DZ");
		airportlocations[airportlocations.length] = new airportlocation("PPG","Pago Pago","International","AS");
		airportlocations[airportlocations.length] = new airportlocation("LAD","Luanda","4 de Fevereiro","AO");
		airportlocations[airportlocations.length] = new airportlocation("AXA","Anguilla","Wallblake","AI");
		airportlocations[airportlocations.length] = new airportlocation("ANU","Antigua","V. C. Bird Intl","AG");
		airportlocations[airportlocations.length] = new airportlocation("BHI","Bahia Blanca","Comandante","AR");
		airportlocations[airportlocations.length] = new airportlocation("BUE","Buenos Aires","Metropolitan Area","AR");
		airportlocations[airportlocations.length] = new airportlocation("EZE","Buenos Aires, Ezeiza Ministro Pistarini","Ezeiza Ministro Pistarini","AR");
		airportlocations[airportlocations.length] = new airportlocation("AEP","Buenos Aires, Arpt. Jorge Newbery","Arpt. Jorge Newbery","AR");
		airportlocations[airportlocations.length] = new airportlocation("CRD","Comodoro Rivadavia","Comodoro Rivadavia","AR");
		airportlocations[airportlocations.length] = new airportlocation("COR","Cordoba","Pajas Blancas","AR");
		airportlocations[airportlocations.length] = new airportlocation("FTE","El Calafate","El Calafate","AR");
		airportlocations[airportlocations.length] = new airportlocation("EQS","Esquel","Esquel","AR");
		airportlocations[airportlocations.length] = new airportlocation("FMA","Formosa","El Pucu","AR");
		airportlocations[airportlocations.length] = new airportlocation("IGR","Iguazu","Cataratas","AR");
		airportlocations[airportlocations.length] = new airportlocation("JUJ","Jujuy","El Cadillal","AR");
		airportlocations[airportlocations.length] = new airportlocation("IRJ","La Rioja","La Rioja","AR");
		airportlocations[airportlocations.length] = new airportlocation("MDQ","Mar Del Plata","Mar Del Plata","AR");
		airportlocations[airportlocations.length] = new airportlocation("MDZ","Mendoza","El Plumerillo","AR");
		airportlocations[airportlocations.length] = new airportlocation("NQN","Neuquen","Neuquen","AR");
		airportlocations[airportlocations.length] = new airportlocation("PSS","Posadas","Posadas","AR");
		airportlocations[airportlocations.length] = new airportlocation("PMY","Puerto Madryn","El Tehuelche","AR");
		airportlocations[airportlocations.length] = new airportlocation("RES","Resistencia","Resistencia","AR");
		airportlocations[airportlocations.length] = new airportlocation("RGL","Rio Gallegos","Internacional","AR");
		airportlocations[airportlocations.length] = new airportlocation("RGA","Rio Grande","Rio Grande","AR");
		airportlocations[airportlocations.length] = new airportlocation("ROS","Rosario","Fisherton","AR");
		airportlocations[airportlocations.length] = new airportlocation("SLA","Salta","Gen Belgrano","AR");
		airportlocations[airportlocations.length] = new airportlocation("BRC","San Carlos DeBariloche","International","AR");
		airportlocations[airportlocations.length] = new airportlocation("UAQ","San Juan","San Juan","AR");
		airportlocations[airportlocations.length] = new airportlocation("LUQ","San Luis","San Luis","AR");
		airportlocations[airportlocations.length] = new airportlocation("AFA","San Rafael","San Rafael","AR");
		airportlocations[airportlocations.length] = new airportlocation("RZA","Santa Cruz","Santa Cruz","AR");
		airportlocations[airportlocations.length] = new airportlocation("SFN","Santa Fe","Santa Fe","AR");
		airportlocations[airportlocations.length] = new airportlocation("RSA","Santa Rosa","Santa Rosa","AR");
		airportlocations[airportlocations.length] = new airportlocation("SDE","Santiago Del Estero","Santiago Del Estero","AR");
		airportlocations[airportlocations.length] = new airportlocation("REL","Trelew","Trelew","AR");
		airportlocations[airportlocations.length] = new airportlocation("TUC","Tucuman","Benj Matienzo","AR");
		airportlocations[airportlocations.length] = new airportlocation("USH","Ushuaia","Islas Malvinas","AR");
		airportlocations[airportlocations.length] = new airportlocation("VDM","Viedma","Viedma","AR");
		airportlocations[airportlocations.length] = new airportlocation("EVN","Yerevan","Zvartnots","AM");
		airportlocations[airportlocations.length] = new airportlocation("AUA","Aruba","Reina Beatrix","AW");
		airportlocations[airportlocations.length] = new airportlocation("GRZ","Graz","Thalerhof","AT");
		airportlocations[airportlocations.length] = new airportlocation("INN","Innsbruck","Innsbruck-kranebitten","AT");
		airportlocations[airportlocations.length] = new airportlocation("KLU","Klagenfurt","Alpe Adria","AT");
		airportlocations[airportlocations.length] = new airportlocation("LNZ","Linz","Blue Danube","AT");
		airportlocations[airportlocations.length] = new airportlocation("SZG","Salzburg","W. A. Mozart","AT");
		airportlocations[airportlocations.length] = new airportlocation("VIE","Vienna","Schwechat International","AT");
		airportlocations[airportlocations.length] = new airportlocation("BAK","Baku, Baku","Baku","AZ");
		airportlocations[airportlocations.length] = new airportlocation("GYD","Baku, Heydar Aliyev International","Heydar Aliyev International (Bina International)","AZ");
		airportlocations[airportlocations.length] = new airportlocation("FPO","Freeport","Grand Bahama International","BS");
		airportlocations[airportlocations.length] = new airportlocation("GGT","George Town","Exuma International","BS");
		airportlocations[airportlocations.length] = new airportlocation("MHH","Marsh Harbour","International","BS");
		airportlocations[airportlocations.length] = new airportlocation("NAS","Nassau","Nassau International","BS");
		airportlocations[airportlocations.length] = new airportlocation("ELH","North Eleuthera","International","BS");
		airportlocations[airportlocations.length] = new airportlocation("ZSA","San Salvador","San Salvador","BS");
		airportlocations[airportlocations.length] = new airportlocation("TCB","Treasure Cay","Treasure Cay","BS");
		airportlocations[airportlocations.length] = new airportlocation("BAH","Manama","Bahrain International","BH");
		airportlocations[airportlocations.length] = new airportlocation("CGP","Chittagong","Patenga","BD");
		airportlocations[airportlocations.length] = new airportlocation("CXB","Cox's Bazar","Cox's Bazar","BD");
		airportlocations[airportlocations.length] = new airportlocation("DAC","Dhaka","Zia International","BD");
		airportlocations[airportlocations.length] = new airportlocation("BGI","Bridgetown","Grantley Adams International","BB");
		airportlocations[airportlocations.length] = new airportlocation("MSQ","Minsk","Minsk International 2","BY");
		airportlocations[airportlocations.length] = new airportlocation("ANR","Antwerp","Deurne","BE");
		airportlocations[airportlocations.length] = new airportlocation("BRU","Brussels","Brussels Airport","BE");
		airportlocations[airportlocations.length] = new airportlocation("BZE","Belize City","Philip S.W.Goldson Int","BZ");
		airportlocations[airportlocations.length] = new airportlocation("COO","Cotonou","Cotonou","BJ");
		airportlocations[airportlocations.length] = new airportlocation("BDA","Bermuda","Bermuda International","BM");
		airportlocations[airportlocations.length] = new airportlocation("PBH","Paro","Paro","BT");
		airportlocations[airportlocations.length] = new airportlocation("CBB","Cochabamba","J Wilsterman","BO");
		airportlocations[airportlocations.length] = new airportlocation("LPB","La Paz","El Alto","BO");
		airportlocations[airportlocations.length] = new airportlocation("SJS","San Jose","San Jose","BO");
		airportlocations[airportlocations.length] = new airportlocation("VVI","Santa Cruz","Viru Viru Intl","BO");
		airportlocations[airportlocations.length] = new airportlocation("SRE","Sucre","Juana Azurduy de Padilla","BO");
		airportlocations[airportlocations.length] = new airportlocation("TJA","Tarija","Tarija","BO");
		airportlocations[airportlocations.length] = new airportlocation("TDD","Trinidad","Trinidad","BO");
		airportlocations[airportlocations.length] = new airportlocation("OMO","Mostar","Mostar","BA");
		airportlocations[airportlocations.length] = new airportlocation("SJJ","Sarajevo","Butmir","BA");
		airportlocations[airportlocations.length] = new airportlocation("FRW","Francistown","Francistown","BW");
		airportlocations[airportlocations.length] = new airportlocation("GBE","Gaborone","Sir Seretse Khama International","BW");
		airportlocations[airportlocations.length] = new airportlocation("BBK","Kasane","Kasane","BW");
		airportlocations[airportlocations.length] = new airportlocation("MUB","Maun","Maun","BW");
		airportlocations[airportlocations.length] = new airportlocation("AJU","Aracaju","Santa Maria","BR");
		airportlocations[airportlocations.length] = new airportlocation("AIR","Aripuana","Aripuana","BR");
		airportlocations[airportlocations.length] = new airportlocation("BEL","Belem","Val De Cans","BR");
		airportlocations[airportlocations.length] = new airportlocation("PLU","Belo Horizonte, Pampulha","Pampulha","BR");
		airportlocations[airportlocations.length] = new airportlocation("CNF","Belo Horizonte, Tancredo Neves International","Tancredo Neves International","BR");
		airportlocations[airportlocations.length] = new airportlocation("BVB","Boa Vista","Boa Vista","BR");
		airportlocations[airportlocations.length] = new airportlocation("BSB","Brasilia","Presidente Juscelino Kubitschek","BR");
		airportlocations[airportlocations.length] = new airportlocation("CPQ","Campinas","International","BR");
		airportlocations[airportlocations.length] = new airportlocation("CGR","Campo Grande","Intl. Airport Campo Grande","BR");
		airportlocations[airportlocations.length] = new airportlocation("CAC","Cascavel","Cascavel","BR");
		airportlocations[airportlocations.length] = new airportlocation("CGB","Cuiaba","Intl. Airpt. Marechal Rondon","BR");
		airportlocations[airportlocations.length] = new airportlocation("CWB","Curitiba","Afonso Pena International Airport","BR");
		airportlocations[airportlocations.length] = new airportlocation("FEN","Fernando De Noronha","Fernando De Noronha","BR");
		airportlocations[airportlocations.length] = new airportlocation("FLN","Florianopolis","Hercilio Luz","BR");
		airportlocations[airportlocations.length] = new airportlocation("FOR","Fortaleza","Pinto Martins","BR");
		airportlocations[airportlocations.length] = new airportlocation("GYN","Goiania","Santa Genoveva","BR");
		airportlocations[airportlocations.length] = new airportlocation("IGU","Iguassu Falls","Cataratas","BR");
		airportlocations[airportlocations.length] = new airportlocation("IOS","Ilheus","Eduardo Gomes","BR");
		airportlocations[airportlocations.length] = new airportlocation("JPA","Joao Pessoa","Castro Pinto","BR");
		airportlocations[airportlocations.length] = new airportlocation("JOI","Joinville","Lauro Carneiro De Loyola","BR");
		airportlocations[airportlocations.length] = new airportlocation("LEC","Lencois","Chapada Diamantina","BR");
		airportlocations[airportlocations.length] = new airportlocation("LDB","Londrina","Londrina","BR");
		airportlocations[airportlocations.length] = new airportlocation("MCP","Macapa","Internacional","BR");
		airportlocations[airportlocations.length] = new airportlocation("MCZ","Maceio","Palmares","BR");
		airportlocations[airportlocations.length] = new airportlocation("MAO","Manaus","Eduardo Gomes Intl","BR");
		airportlocations[airportlocations.length] = new airportlocation("MAB","Maraba","Maraba","BR");
		airportlocations[airportlocations.length] = new airportlocation("MGF","Maringa","Regional De Maringa SBMG","BR");
		airportlocations[airportlocations.length] = new airportlocation("NAT","Natal","Augusto Severo","BR");
		airportlocations[airportlocations.length] = new airportlocation("POA","Porto Alegre","Salgado Filho","BR");
		airportlocations[airportlocations.length] = new airportlocation("BPS","Porto Seguro","Porto Seguro","BR");
		airportlocations[airportlocations.length] = new airportlocation("PVH","Porto Velho","Belmonte","BR");
		airportlocations[airportlocations.length] = new airportlocation("REC","Recife","Guararapes Intl","BR");
		airportlocations[airportlocations.length] = new airportlocation("RAO","Ribeirao Preto","Leite Lopes","BR");
		airportlocations[airportlocations.length] = new airportlocation("RBR","Rio Branco","Pres. Medici","BR");
		airportlocations[airportlocations.length] = new airportlocation("GIG","Rio De Janeiro, International","Galeao–antonio Carlos Jobim International Airport","BR");
		airportlocations[airportlocations.length] = new airportlocation("SSA","Salvador, Bahia","Luis Eduardo Magalhaes","BR");
		airportlocations[airportlocations.length] = new airportlocation("STM","Santarem","Eduardo Gomes","BR");
		airportlocations[airportlocations.length] = new airportlocation("SLZ","Sao Luis","Marechal Cunha Machado","BR");
		airportlocations[airportlocations.length] = new airportlocation("SAO","Sao Paulo","Metropolitan Area","BR");
		airportlocations[airportlocations.length] = new airportlocation("TFF","Tefe","Tefe","BR");
		airportlocations[airportlocations.length] = new airportlocation("UDI","Uberlandia","Eduardo Gomes","BR");
		airportlocations[airportlocations.length] = new airportlocation("VIX","Vitoria","Eurico Sales","BR");
		airportlocations[airportlocations.length] = new airportlocation("EIS","Beef Island","Beef Island","VG");
		airportlocations[airportlocations.length] = new airportlocation("BWN","Bandar Seri Begawan","Bandar Seri Begwan International Airport","BN");
		airportlocations[airportlocations.length] = new airportlocation("SOF","Sofia","Sofia","BG");
		airportlocations[airportlocations.length] = new airportlocation("VAR","Varna","Varna","BG");
		airportlocations[airportlocations.length] = new airportlocation("OUA","Ouagadougou","Ouagadougou","BF");
		airportlocations[airportlocations.length] = new airportlocation("BJM","Bujumbura","International","BI");
		airportlocations[airportlocations.length] = new airportlocation("PNH","Phnom Penh","Phnom Penh International","KH");
		airportlocations[airportlocations.length] = new airportlocation("REP","Siem Reap","Siem Reap","KH");
		airportlocations[airportlocations.length] = new airportlocation("DLA","Douala","Douala","CM");
		airportlocations[airportlocations.length] = new airportlocation("NSI","Yaounde","Nsimalen International","CM");
		airportlocations[airportlocations.length] = new airportlocation("YXX","Abbotsford","Abbotsford","CA");
		airportlocations[airportlocations.length] = new airportlocation("YBG","Bagotville","Bagotville","CA");
		airportlocations[airportlocations.length] = new airportlocation("ZBF","Bathurst","Bathurst","CA");
		airportlocations[airportlocations.length] = new airportlocation("YYC","Calgary","Calgary International Airport","CA");
		airportlocations[airportlocations.length] = new airportlocation("YBL","Campbell River","Campbell River","CA");
		airportlocations[airportlocations.length] = new airportlocation("YCG","Castlegar","Castlegar","CA");
		airportlocations[airportlocations.length] = new airportlocation("YYG","Charlottetown","Charlottetown","CA");
		airportlocations[airportlocations.length] = new airportlocation("YQQ","Comox","Comox","CA");
		airportlocations[airportlocations.length] = new airportlocation("YXC","Cranbrook","Cranbrook","CA");
		airportlocations[airportlocations.length] = new airportlocation("YDF","Deer Lake","Deer Lake","CA");
		airportlocations[airportlocations.length] = new airportlocation("YEG","Edmonton","Edmonton International","CA");
		airportlocations[airportlocations.length] = new airportlocation("YMM","Fort Mcmurray","Fort Mcmurray","CA");
		airportlocations[airportlocations.length] = new airportlocation("YYE","Fort Nelson","Fort Nelson","CA");
		airportlocations[airportlocations.length] = new airportlocation("YFS","Fort Simpson","Fort Simpson","CA");
		airportlocations[airportlocations.length] = new airportlocation("YXJ","Fort St John","Fort St John","CA");
		airportlocations[airportlocations.length] = new airportlocation("YFC","Fredericton","Fredericton","CA");
		airportlocations[airportlocations.length] = new airportlocation("YGP","Gaspe","Metropolitan Area","CA");
		airportlocations[airportlocations.length] = new airportlocation("YYR","Goose Bay","Goose Bay","CA");
		airportlocations[airportlocations.length] = new airportlocation("YQU","Grande Prairie","Grande Prairie","CA");
		airportlocations[airportlocations.length] = new airportlocation("YHZ","Halifax","Halifax International","CA");
		airportlocations[airportlocations.length] = new airportlocation("YHM","Hamilton","Hamilton","CA");
		airportlocations[airportlocations.length] = new airportlocation("YHY","Hay River","Hay River","CA");
		airportlocations[airportlocations.length] = new airportlocation("YEV","Inuvik","Inuvik/mike Zubko","CA");
		airportlocations[airportlocations.length] = new airportlocation("YKA","Kamloops","Kamloops","CA");
		airportlocations[airportlocations.length] = new airportlocation("YLW","Kelowna","Kelowna Airport","CA");
		airportlocations[airportlocations.length] = new airportlocation("YGK","Kingston","Kingston","CA");
		airportlocations[airportlocations.length] = new airportlocation("YKF","Kitchener/Waterloo","Kitchener-Waterloo Regional","CA");
		airportlocations[airportlocations.length] = new airportlocation("YQL","Lethbridge","Lethbridge","CA");
		airportlocations[airportlocations.length] = new airportlocation("YXU","London","London International","CA");
		airportlocations[airportlocations.length] = new airportlocation("YXH","Medicine Hat","Medicine Hat","CA");
		airportlocations[airportlocations.length] = new airportlocation("YQM","Moncton","Greater Moncton International Airport","CA");
		airportlocations[airportlocations.length] = new airportlocation("YUL","Montreal","Montréal-Pierre Elliott Trudeau International Airp","CA");
		airportlocations[airportlocations.length] = new airportlocation("YCD","Nanaimo","Nanaimo Arpt","CA");
		airportlocations[airportlocations.length] = new airportlocation("YYB","North Bay","North Bay","CA");
		airportlocations[airportlocations.length] = new airportlocation("YOW","Ottawa","Ottawa International","CA");
		airportlocations[airportlocations.length] = new airportlocation("YYF","Penticton","Penticton","CA");
		airportlocations[airportlocations.length] = new airportlocation("YZT","Port Hardy","Port Hardy","CA");
		airportlocations[airportlocations.length] = new airportlocation("YPW","Powell River","Powell River","CA");
		airportlocations[airportlocations.length] = new airportlocation("YXS","Prince George","Prince George","CA");
		airportlocations[airportlocations.length] = new airportlocation("YPR","Prince Rupert","Digby Island","CA");
		airportlocations[airportlocations.length] = new airportlocation("YQB","Quebec City","Québec","CA");
		airportlocations[airportlocations.length] = new airportlocation("YQR","Regina, Saskatchewan","Regina","CA");
		airportlocations[airportlocations.length] = new airportlocation("YUY","Rouyn-Noranda, Quebec","Rouyn-Noranda","CA");
		airportlocations[airportlocations.length] = new airportlocation("YSJ","Saint John","Saint John","CA");
		airportlocations[airportlocations.length] = new airportlocation("YZP","Sandspit","Sandspit","CA");
		airportlocations[airportlocations.length] = new airportlocation("YZR","Sarnia","Sarnia","CA");
		airportlocations[airportlocations.length] = new airportlocation("YXE","Saskatoon","J.G. Diefenbaker International Airport","CA");
		airportlocations[airportlocations.length] = new airportlocation("YAM","Sault Ste Marie","Sault Ste Marie","CA");
		airportlocations[airportlocations.length] = new airportlocation("YZV","Sept-Iles","Sept-Iles","CA");
		airportlocations[airportlocations.length] = new airportlocation("YYD","Smithers","Smithers","CA");
		airportlocations[airportlocations.length] = new airportlocation("YYT","St. John's","St. John´s International Airport","CA");
		airportlocations[airportlocations.length] = new airportlocation("YSB","Sudbury","Sudbury","CA");
		airportlocations[airportlocations.length] = new airportlocation("YQY","Sydney","Sydney","CA");
		airportlocations[airportlocations.length] = new airportlocation("YXT","Terrace","Terrace","CA");
		airportlocations[airportlocations.length] = new airportlocation("YTH","Thompson","Thompson","CA");
		airportlocations[airportlocations.length] = new airportlocation("YQT","Thunder Bay","Thunder Bay","CA");
		airportlocations[airportlocations.length] = new airportlocation("YTS","Timmins","Timmins","CA");
		airportlocations[airportlocations.length] = new airportlocation("YYZ","Toronto","Lester B. Pearson International","CA");
		airportlocations[airportlocations.length] = new airportlocation("YVO","Val D'Or","Val D'Or","CA");
		airportlocations[airportlocations.length] = new airportlocation("YVR","Vancouver","Vancouver Intl","CA");
		airportlocations[airportlocations.length] = new airportlocation("YYJ","Victoria","Victoria International","CA");
		airportlocations[airportlocations.length] = new airportlocation("YWK","Wabush","Wabush","CA");
		airportlocations[airportlocations.length] = new airportlocation("YXY","Whitehorse, Yukon","Whitehorse International","CA");
		airportlocations[airportlocations.length] = new airportlocation("YWL","Williams Lake","Williams Lake","CA");
		airportlocations[airportlocations.length] = new airportlocation("YQG","Windsor","Windsor","CA");
		airportlocations[airportlocations.length] = new airportlocation("YWG","Winnipeg","Winnipeg","CA");
		airportlocations[airportlocations.length] = new airportlocation("YZF","Yellowknife","Yellowknife","CA");
		airportlocations[airportlocations.length] = new airportlocation("RAI","Praia","Francisco Mendes","CV");
		airportlocations[airportlocations.length] = new airportlocation("SID","Sal","Amilcar Cabral Intl","CV");
		airportlocations[airportlocations.length] = new airportlocation("VXE","Sao Vicente","San Pedro","CV");
		airportlocations[airportlocations.length] = new airportlocation("GCM","Georgetown","Owen Roberts International","KY");
		airportlocations[airportlocations.length] = new airportlocation("NDJ","Ndjamena","Ndjamena","TD");
		airportlocations[airportlocations.length] = new airportlocation("ANF","Antofagasta","Cerro Moreno","CL");
		airportlocations[airportlocations.length] = new airportlocation("ARI","Arica","Chacalluta","CL");
		airportlocations[airportlocations.length] = new airportlocation("BBA","Balmaceda","Teniente Vidal","CL");
		airportlocations[airportlocations.length] = new airportlocation("CJC","Calama","El Loa","CL");
		airportlocations[airportlocations.length] = new airportlocation("CCP","Concepcion","Carriel Sur","CL");
		airportlocations[airportlocations.length] = new airportlocation("CPO","Copiapo","Chamonate","CL");
		airportlocations[airportlocations.length] = new airportlocation("ESR","El Salvador","El Salvador","CL");
		airportlocations[airportlocations.length] = new airportlocation("IQQ","Iquique","Cavancha","CL");
		airportlocations[airportlocations.length] = new airportlocation("IPC","Isla de Pascua, Easter Island","Mataveri","CL");
		airportlocations[airportlocations.length] = new airportlocation("LSC","La Serena","La Florida","CL");
		airportlocations[airportlocations.length] = new airportlocation("ZOS","Osorno","Canal Balo","CL");
		airportlocations[airportlocations.length] = new airportlocation("PMC","Puerto Montt","Tepual","CL");
		airportlocations[airportlocations.length] = new airportlocation("PUQ","Punta Arenas","Pres Ibanez","CL");
		airportlocations[airportlocations.length] = new airportlocation("SCL","Santiago","Arturo Merino Benitez","CL");
		airportlocations[airportlocations.length] = new airportlocation("ZCO","Temuco","Maquehue","CL");
		airportlocations[airportlocations.length] = new airportlocation("ZAL","Valdivia","Pichoy","CL");
		airportlocations[airportlocations.length] = new airportlocation("BAV","Baotou","Baotou","CN");
		airportlocations[airportlocations.length] = new airportlocation("BHY","Beihai","Beihai","CN");
		airportlocations[airportlocations.length] = new airportlocation("PEK","Beijing","Beijing Capital Int.","CN");
		airportlocations[airportlocations.length] = new airportlocation("CGQ","Changchun","Changchun","CN");
		airportlocations[airportlocations.length] = new airportlocation("CSX","Changsha","Changsha","CN");
		airportlocations[airportlocations.length] = new airportlocation("CIH","Changzhi","Changzhi","CN");
		airportlocations[airportlocations.length] = new airportlocation("CZX","Changzhou","Changzhou","CN");
		airportlocations[airportlocations.length] = new airportlocation("CTU","Chengdu","Shuangliu","CN");
		airportlocations[airportlocations.length] = new airportlocation("CKG","Chongqing","Chongqing Jiangbei International","CN");
		airportlocations[airportlocations.length] = new airportlocation("DLU","Dali City","Dali","CN");
		airportlocations[airportlocations.length] = new airportlocation("DLC","Dalian","Dalian","CN");
		airportlocations[airportlocations.length] = new airportlocation("DDG","Dandong","Dandong","CN");
		airportlocations[airportlocations.length] = new airportlocation("DYG","Dayong","Dayong","CN");
		airportlocations[airportlocations.length] = new airportlocation("DIG","Diqing","Diqing","CN");
		airportlocations[airportlocations.length] = new airportlocation("DOY","Dongying","Dongying","CN");
		airportlocations[airportlocations.length] = new airportlocation("DNH","Dunhuang","Dunhuang","CN");
		airportlocations[airportlocations.length] = new airportlocation("ENH","Enshi","Enshi","CN");
		airportlocations[airportlocations.length] = new airportlocation("FOC","Fuzhou","Fuzhou","CN");
		airportlocations[airportlocations.length] = new airportlocation("KOW","Ganzhou","Ganzhou","CN");
		airportlocations[airportlocations.length] = new airportlocation("CAN","Guangzhou","New Baiyun","CN");
		airportlocations[airportlocations.length] = new airportlocation("KWL","Guilin","Guilin","CN");
		airportlocations[airportlocations.length] = new airportlocation("KWE","Guiyang","Guiyang","CN");
		airportlocations[airportlocations.length] = new airportlocation("HAK","Haikou","Haikou","CN");
		airportlocations[airportlocations.length] = new airportlocation("HGH","Hangzhou","Hangzhou","CN");
		airportlocations[airportlocations.length] = new airportlocation("HRB","Harbin","Harbin","CN");
		airportlocations[airportlocations.length] = new airportlocation("HFE","Hefei","Shanghai","CN");
		airportlocations[airportlocations.length] = new airportlocation("HET","Hohhot","Hohhot","CN");
		airportlocations[airportlocations.length] = new airportlocation("HYN","Huangyan","Huangyan","CN");
		airportlocations[airportlocations.length] = new airportlocation("JMU","Jiamusi","Jiamusi","CN");
		airportlocations[airportlocations.length] = new airportlocation("TNA","Jinan","Jinan","CN");
		airportlocations[airportlocations.length] = new airportlocation("JDZ","Jingdezhen","Jingdezhen","CN");
		airportlocations[airportlocations.length] = new airportlocation("JHG","Jinghong","Gasa","CN");
		airportlocations[airportlocations.length] = new airportlocation("JJN","Jinjiang","Jinjiang","CN");
		airportlocations[airportlocations.length] = new airportlocation("KHG","Kashi","Kashi","CN");
		airportlocations[airportlocations.length] = new airportlocation("KMG","Kunming","Kunming","CN");
		airportlocations[airportlocations.length] = new airportlocation("LHW","Lanzhou","Lanzhou Airport","CN");
		airportlocations[airportlocations.length] = new airportlocation("LXA","Lhasa","Gonggar","CN");
		airportlocations[airportlocations.length] = new airportlocation("LYG","Lianyungang","Lianyungang","CN");
		airportlocations[airportlocations.length] = new airportlocation("LJG","Lijiang City","Lijiang","CN");
		airportlocations[airportlocations.length] = new airportlocation("LYI","Linyi","Linyi","CN");
		airportlocations[airportlocations.length] = new airportlocation("LZH","Liuzhou","Liuzhou","CN");
		airportlocations[airportlocations.length] = new airportlocation("LYA","Luoyang","Luoyang","CN");
		airportlocations[airportlocations.length] = new airportlocation("LZO","Luzhou","Luzhou","CN");
		airportlocations[airportlocations.length] = new airportlocation("MXZ","Meixian","Meixian","CN");
		airportlocations[airportlocations.length] = new airportlocation("MIG","Mian Yang","Mian Yang","CN");
		airportlocations[airportlocations.length] = new airportlocation("KHN","Nanchang","Nanchang","CN");
		airportlocations[airportlocations.length] = new airportlocation("NKG","Nanking/nanjing","Lukou International Airport","CN");
		airportlocations[airportlocations.length] = new airportlocation("NNG","Nanning","Nanning","CN");
		airportlocations[airportlocations.length] = new airportlocation("NTG","Nantong","Nantong","CN");
		airportlocations[airportlocations.length] = new airportlocation("NNY","Nanyang","Nanyang","CN");
		airportlocations[airportlocations.length] = new airportlocation("NGB","Ningbo","Ningbo","CN");
		airportlocations[airportlocations.length] = new airportlocation("TAO","Qingdao","Qingdao","CN");
		airportlocations[airportlocations.length] = new airportlocation("NDG","Qiqihar","Qiqihar","CN");
		airportlocations[airportlocations.length] = new airportlocation("SYX","Sanya","Sanya","CN");
		airportlocations[airportlocations.length] = new airportlocation("PVG","Shanghai","Pu Dong","CN");
		airportlocations[airportlocations.length] = new airportlocation("SWA","Shantou","Shantou","CN");
		airportlocations[airportlocations.length] = new airportlocation("SHE","Shenyang","Shenyang","CN");
		airportlocations[airportlocations.length] = new airportlocation("SZX","Shenzhen","Shenzhen","CN");
		airportlocations[airportlocations.length] = new airportlocation("SJW","Shijiazhuang","Daguocun","CN");
		airportlocations[airportlocations.length] = new airportlocation("JZH","Song Pan","Jiu Zhai Huang Long","CN");
		airportlocations[airportlocations.length] = new airportlocation("TYN","Taiyuan","Taiyuan","CN");
		airportlocations[airportlocations.length] = new airportlocation("TSN","Tianjin","Tianjin","CN");
		airportlocations[airportlocations.length] = new airportlocation("TGO","Tongliao","Tongliao","CN");
		airportlocations[airportlocations.length] = new airportlocation("TXN","Tunxi","Tunxi","CN");
		airportlocations[airportlocations.length] = new airportlocation("URC","Urumqi","Urumqi","CN");
		airportlocations[airportlocations.length] = new airportlocation("WEH","Weihai","Weihai","CN");
		airportlocations[airportlocations.length] = new airportlocation("WNZ","Wenzhou","Wenzhou","CN");
		airportlocations[airportlocations.length] = new airportlocation("WUH","Wuhan","Tianhe International","CN");
		airportlocations[airportlocations.length] = new airportlocation("WUX","Wuxi","Wuxi","CN");
		airportlocations[airportlocations.length] = new airportlocation("WUS","Wuyishan","Wuyishan","CN");
		airportlocations[airportlocations.length] = new airportlocation("XIY","Xi An","Xianyang","CN");
		airportlocations[airportlocations.length] = new airportlocation("XMN","Xiamen","Xiamen","CN");
		airportlocations[airportlocations.length] = new airportlocation("XFN","Xiangfan","Xiangfan","CN");
		airportlocations[airportlocations.length] = new airportlocation("XNN","Xining","Xining","CN");
		airportlocations[airportlocations.length] = new airportlocation("XUZ","Xuzhou","Xuzhou","CN");
		airportlocations[airportlocations.length] = new airportlocation("YNJ","Yanji","Yanji","CN");
		airportlocations[airportlocations.length] = new airportlocation("YNT","Yantai","Yantai","CN");
		airportlocations[airportlocations.length] = new airportlocation("YIH","Yichang","Yichang","CN");
		airportlocations[airportlocations.length] = new airportlocation("INC","Yinchuan","Yinchuan","CN");
		airportlocations[airportlocations.length] = new airportlocation("YIW","Yiwu","Yiwu","CN");
		airportlocations[airportlocations.length] = new airportlocation("UYN","Yulin","Yulin","CN");
		airportlocations[airportlocations.length] = new airportlocation("ZHA","Zhanjiang","Zhanjiang","CN");
		airportlocations[airportlocations.length] = new airportlocation("CGO","Zhengzhou","Zhengzhou","CN");
		airportlocations[airportlocations.length] = new airportlocation("HSN","Zhoushan","Zhoushan","CN");
		airportlocations[airportlocations.length] = new airportlocation("ZUH","Zhuhai","Zhuhai Airport","CN");
		airportlocations[airportlocations.length] = new airportlocation("XCH","Christmas Island","Christmas Island","CX");
		airportlocations[airportlocations.length] = new airportlocation("CCK","Cocos Islands","Cocos Islands","CC");
		airportlocations[airportlocations.length] = new airportlocation("AUC","Arauca","Arauca","CO");
		airportlocations[airportlocations.length] = new airportlocation("AXM","Armenia","El Eden","CO");
		airportlocations[airportlocations.length] = new airportlocation("BAQ","Barranquilla","E Cortissoz","CO");
		airportlocations[airportlocations.length] = new airportlocation("BOG","Bogota","Eldorado","CO");
		airportlocations[airportlocations.length] = new airportlocation("BGA","Bucaramanga","Palo Negro","CO");
		airportlocations[airportlocations.length] = new airportlocation("CLO","Cali","Alfonso B. Aragon","CO");
		airportlocations[airportlocations.length] = new airportlocation("CTG","Cartagena","Rafael Nunez","CO");
		airportlocations[airportlocations.length] = new airportlocation("CUC","Cucuta","Camilo Dazo","CO");
		airportlocations[airportlocations.length] = new airportlocation("MZL","Manizales","Santaguida","CO");
		airportlocations[airportlocations.length] = new airportlocation("MDE","Medellin","Jose Maria Cordova","CO");
		airportlocations[airportlocations.length] = new airportlocation("PEI","Pereira","Matecana","CO");
		airportlocations[airportlocations.length] = new airportlocation("ADZ","San Andres Island","San Andres Island","CO");
		airportlocations[airportlocations.length] = new airportlocation("HAH","Moroni","Prince Said Ibrahim In","KM");
		airportlocations[airportlocations.length] = new airportlocation("BZV","Brazzaville","Maya Maya","CG");
		airportlocations[airportlocations.length] = new airportlocation("FIH","Kinshasa","N’Djili Airport","CD");
		airportlocations[airportlocations.length] = new airportlocation("AIT","Aitutaki","Aitutaki","CK");
		airportlocations[airportlocations.length] = new airportlocation("RAR","Rarotonga","Rarotonga","CK");
		airportlocations[airportlocations.length] = new airportlocation("BAI","Buenos Aires","Buenos Aires","CR");
		airportlocations[airportlocations.length] = new airportlocation("LIR","Liberia","Daniel Oduber International","CR");
		airportlocations[airportlocations.length] = new airportlocation("SJO","San Jose","Juan Santamaría International","CR");
		airportlocations[airportlocations.length] = new airportlocation("ABJ","Abidjan","Felix Houphouet Boigny","CI");
		airportlocations[airportlocations.length] = new airportlocation("DBV","Dubrovnik","Dubrovnik","HR");
		airportlocations[airportlocations.length] = new airportlocation("PUY","Pula","Pula","HR");
		airportlocations[airportlocations.length] = new airportlocation("SPU","Split","Split","HR");
		airportlocations[airportlocations.length] = new airportlocation("ZAD","Zadar","Zadar","HR");
		airportlocations[airportlocations.length] = new airportlocation("ZAG","Zagreb","Pleso","HR");
		airportlocations[airportlocations.length] = new airportlocation("CMW","Camaguey","Ign Agramonte Intl","CU");
		airportlocations[airportlocations.length] = new airportlocation("HAV","Havana","Jose Marti Intl","CU");
		airportlocations[airportlocations.length] = new airportlocation("HOG","Holguin","Frank Pais","CU");
		airportlocations[airportlocations.length] = new airportlocation("SCU","Santiago","Antonio Maceo","CU");
		airportlocations[airportlocations.length] = new airportlocation("VRA","Varadero","Juan Gualberto Gomez","CU");
		airportlocations[airportlocations.length] = new airportlocation("GEC","Gecitkale","Gecitkale","CY");
		airportlocations[airportlocations.length] = new airportlocation("LCA","Larnaca","Larnaca International Airport","CY");
		airportlocations[airportlocations.length] = new airportlocation("ECN","Lefkosa","Ercan","CY");
		airportlocations[airportlocations.length] = new airportlocation("PFO","Paphos","International","CY");
		airportlocations[airportlocations.length] = new airportlocation("BRQ","Brno","Turany","CZ");
		airportlocations[airportlocations.length] = new airportlocation("OSR","Ostrava","Mosnov","CZ");
		airportlocations[airportlocations.length] = new airportlocation("PRG","Prague","Ruzyne","CZ");
		airportlocations[airportlocations.length] = new airportlocation("AAL","Aalborg","Aalborg","DK");
		airportlocations[airportlocations.length] = new airportlocation("AAR","Aarhus","Aarhus Airport","DK");
		airportlocations[airportlocations.length] = new airportlocation("BLL","Billund","Billund","DK");
		airportlocations[airportlocations.length] = new airportlocation("CPH","Copenhagen","Kastrup","DK");
		airportlocations[airportlocations.length] = new airportlocation("EBJ","Esbjerg","Esbjerg","DK");
		airportlocations[airportlocations.length] = new airportlocation("KRP","Karup","Karup","DK");
		airportlocations[airportlocations.length] = new airportlocation("RNN","Renne","Bornholm","DK");
		airportlocations[airportlocations.length] = new airportlocation("SGD","Sonderborg","Sonderborg","DK");
		airportlocations[airportlocations.length] = new airportlocation("JIB","Djibouti","Ambouli","DJ");
		airportlocations[airportlocations.length] = new airportlocation("DOM","Dominica","Melville Hall","DM");
		airportlocations[airportlocations.length] = new airportlocation("LRM","La Romana","Casa de Campo International","DO");
		airportlocations[airportlocations.length] = new airportlocation("POP","Puerto Plata","La Union","DO");
		airportlocations[airportlocations.length] = new airportlocation("STI","Santiago","Cibao International Airport","DO");
		airportlocations[airportlocations.length] = new airportlocation("SDQ","Santo Domingo","Las Americas","DO");
		airportlocations[airportlocations.length] = new airportlocation("DIL","Dili","Presidente Nicolau Lobato International Airport","TP");
		airportlocations[airportlocations.length] = new airportlocation("GPS","Galapagos Is","Baltra","EC");
		airportlocations[airportlocations.length] = new airportlocation("GYE","Guayaquil","Simon Bolivar","EC");
		airportlocations[airportlocations.length] = new airportlocation("UIO","Quito","Mariscal Sucre","EC");
		airportlocations[airportlocations.length] = new airportlocation("ABS","Abu Simbel","Abu Simbel","EG");
		airportlocations[airportlocations.length] = new airportlocation("HBE","Alexandria, Borg El Arab","Borg El Arab","EG");
		airportlocations[airportlocations.length] = new airportlocation("ALY","Alexandria, El Nohza","El Nohza","EG");
		airportlocations[airportlocations.length] = new airportlocation("ASW","Aswan","Aswan","EG");
		airportlocations[airportlocations.length] = new airportlocation("CAI","Cairo","Cairo International","EG");
		airportlocations[airportlocations.length] = new airportlocation("HRG","Hurghada","Hurghada","EG");
		airportlocations[airportlocations.length] = new airportlocation("LXR","Luxor","Luxor","EG");
		airportlocations[airportlocations.length] = new airportlocation("SSH","Sharm El Sheikh","Ophira International","EG");
		airportlocations[airportlocations.length] = new airportlocation("SAL","San Salvador","Comalapa International","SV");
		airportlocations[airportlocations.length] = new airportlocation("SSG","Malabo","Santa Isabel","GQ");
		airportlocations[airportlocations.length] = new airportlocation("ASM","Asmara","Yohannes IV","ER");
		airportlocations[airportlocations.length] = new airportlocation("TLL","Tallinn","Ulemiste","EE");
		airportlocations[airportlocations.length] = new airportlocation("ADD","Addis Ababa","Bole","ET");
		airportlocations[airportlocations.length] = new airportlocation("AXU","Axum","Axum","ET");
		airportlocations[airportlocations.length] = new airportlocation("BJR","Bahar Dar","Bahar Dar","ET");
		airportlocations[airportlocations.length] = new airportlocation("DIR","Dire Dawa","Aba Tenna D Yilma","ET");
		airportlocations[airportlocations.length] = new airportlocation("GDQ","Gondar","Gondar","ET");
		airportlocations[airportlocations.length] = new airportlocation("LLI","Lalibela","Lalibela","ET");
		airportlocations[airportlocations.length] = new airportlocation("MQX","Makale","Makale","ET");
		airportlocations[airportlocations.length] = new airportlocation("MPN","Mount Pleasant","Mount Pleasant","FK");
		airportlocations[airportlocations.length] = new airportlocation("FAE","Sorvag","Vagar","FO");
		airportlocations[airportlocations.length] = new airportlocation("LEV","Bureta","Levuka Airfield","FJ");
		airportlocations[airportlocations.length] = new airportlocation("KDV","Kandavu","Kandavu","FJ");
		airportlocations[airportlocations.length] = new airportlocation("LBS","Labasa","Labasa","FJ");
		airportlocations[airportlocations.length] = new airportlocation("PTF","Malololailai","Malololailai","FJ");
		airportlocations[airportlocations.length] = new airportlocation("NAN","Nadi","Nadi International","FJ");
		airportlocations[airportlocations.length] = new airportlocation("RTA","Rotuma Island","Rotuma Island","FJ");
		airportlocations[airportlocations.length] = new airportlocation("SVU","Savusavu","Savusavu","FJ");
		airportlocations[airportlocations.length] = new airportlocation("SUV","Suva","Nausori","FJ");
		airportlocations[airportlocations.length] = new airportlocation("TVU","Taveuni","Matei","FJ");
		airportlocations[airportlocations.length] = new airportlocation("VBV","Vanuabalavu","Vanuabalavu","FJ");
		airportlocations[airportlocations.length] = new airportlocation("IVL","Ivalo","Ivalo","FI");
		airportlocations[airportlocations.length] = new airportlocation("JOE","Joensuu","Joensuu","FI");
		airportlocations[airportlocations.length] = new airportlocation("JYV","Jyvaskyla","Jyvaskyla","FI");
		airportlocations[airportlocations.length] = new airportlocation("KAJ","Kajaani","Kajaani","FI");
		airportlocations[airportlocations.length] = new airportlocation("KEM","Kemi/Tornio","Kemi/Tornio","FI");
		airportlocations[airportlocations.length] = new airportlocation("KTT","Kittila","Kittila","FI");
		airportlocations[airportlocations.length] = new airportlocation("KOK","Kokkola/Pietarsaari","Kruunupyy","FI");
		airportlocations[airportlocations.length] = new airportlocation("KUO","Kuopio","Kuopio","FI");
		airportlocations[airportlocations.length] = new airportlocation("KAO","Kuusamo","Kuusamo","FI");
		airportlocations[airportlocations.length] = new airportlocation("LPP","Lappeenranta","Lappeenranta","FI");
		airportlocations[airportlocations.length] = new airportlocation("MHQ","Mariehamn","Mariehamn","FI");
		airportlocations[airportlocations.length] = new airportlocation("OUL","Oulu","Oulu","FI");
		airportlocations[airportlocations.length] = new airportlocation("POR","Pori","Pori","FI");
		airportlocations[airportlocations.length] = new airportlocation("RVN","Rovaniemi","Rovaniemi","FI");
		airportlocations[airportlocations.length] = new airportlocation("SVL","Savonlinna","Savonlinna","FI");
		airportlocations[airportlocations.length] = new airportlocation("TMP","Tampere","Tampere-pirkkala","FI");
		airportlocations[airportlocations.length] = new airportlocation("TKU","Turku","Turku","FI");
		airportlocations[airportlocations.length] = new airportlocation("VAA","Vaasa","Vaasa","FI");
		airportlocations[airportlocations.length] = new airportlocation("HEL","Vantaa","Helsinki-Vantaa","FI");
		airportlocations[airportlocations.length] = new airportlocation("AJA","Ajaccio","Campo Dell Oro","FR");
		airportlocations[airportlocations.length] = new airportlocation("NCY","Annecy","Annecy-Meythe","FR");
		airportlocations[airportlocations.length] = new airportlocation("AVN","Avignon","Avignon-Caum","FR");
		airportlocations[airportlocations.length] = new airportlocation("MLH","Basel Mulhouse Freiburg","Euroairport","FR");
		airportlocations[airportlocations.length] = new airportlocation("BIA","Bastia","Poretta","FR");
		airportlocations[airportlocations.length] = new airportlocation("EGC","Bergerac","Roumanieres","FR");
		airportlocations[airportlocations.length] = new airportlocation("BZR","Beziers","Beziers Vias","FR");
		airportlocations[airportlocations.length] = new airportlocation("BIQ","Biarritz","Biarritz Parme","FR");
		airportlocations[airportlocations.length] = new airportlocation("BOD","Bordeaux","Mérignac","FR");
		airportlocations[airportlocations.length] = new airportlocation("BES","Brest","Guipavas","FR");
		airportlocations[airportlocations.length] = new airportlocation("CLY","Calvi","Ste Catherine","FR");
		airportlocations[airportlocations.length] = new airportlocation("CFE","Clermont-Ferrand","Aulnat","FR");
		airportlocations[airportlocations.length] = new airportlocation("FSC","Figari","Sud Corse","FR");
		airportlocations[airportlocations.length] = new airportlocation("GNB","Grenoble","Saint Geoirs","FR");
		airportlocations[airportlocations.length] = new airportlocation("TLN","Hyeres","Le Palyvestre","FR");
		airportlocations[airportlocations.length] = new airportlocation("LRH","La Rochelle","Laleu","FR");
		airportlocations[airportlocations.length] = new airportlocation("LIL","Lille, Lesquin","Lesquin","FR");
		airportlocations[airportlocations.length] = new airportlocation("LIG","Limoges","Bellegarde","FR");
		airportlocations[airportlocations.length] = new airportlocation("LRT","Lorient","Lann Bihoue","FR");
		airportlocations[airportlocations.length] = new airportlocation("LDE","Lourdes/Tarbes","Tarbes Ossun Lourdes","FR");
		airportlocations[airportlocations.length] = new airportlocation("LYS","Lyon","St-Exupéry","FR");
		airportlocations[airportlocations.length] = new airportlocation("MRS","Marseille","Marseille Provence Airport","FR");
		airportlocations[airportlocations.length] = new airportlocation("MPL","Montpellier","Montpellier Méditerranée","FR");
		airportlocations[airportlocations.length] = new airportlocation("NTE","Nantes","Nantes Atlantique","FR");
		airportlocations[airportlocations.length] = new airportlocation("NCE","Nice","Cote D'azur International Airport","FR");
		airportlocations[airportlocations.length] = new airportlocation("PAR","Paris","Metropolitan Area","FR");
		airportlocations[airportlocations.length] = new airportlocation("CDG","Paris, Charles De Gaulle","Charles De Gaulle","FR");
		airportlocations[airportlocations.length] = new airportlocation("ORY","Paris, Orly","Orly","FR");
		airportlocations[airportlocations.length] = new airportlocation("PUF","Pau","Pau-Pyrénées","FR");
		airportlocations[airportlocations.length] = new airportlocation("PGF","Perpignan","Llabanere","FR");
		airportlocations[airportlocations.length] = new airportlocation("UIP","Quimper","Pluguffan","FR");
		airportlocations[airportlocations.length] = new airportlocation("RNS","Rennes","St Jacques","FR");
		airportlocations[airportlocations.length] = new airportlocation("RDZ","Rodez","Marcillac","FR");
		airportlocations[airportlocations.length] = new airportlocation("SXB","Strasbourg","Entzheim","FR");
		airportlocations[airportlocations.length] = new airportlocation("TLS","Toulouse","Blagnac","FR");
		airportlocations[airportlocations.length] = new airportlocation("BOB","Bora Bora","Motu-mute","PF");
		airportlocations[airportlocations.length] = new airportlocation("FAV","Fakarava","Fakarava","PF");
		airportlocations[airportlocations.length] = new airportlocation("GMR","Gambier Is","Gambier Is","PF");
		airportlocations[airportlocations.length] = new airportlocation("HUH","Huahine","Huahine","PF");
		airportlocations[airportlocations.length] = new airportlocation("MAU","Maupiti","Maupiti","PF");
		airportlocations[airportlocations.length] = new airportlocation("MOZ","Moorea","Temae","PF");
		airportlocations[airportlocations.length] = new airportlocation("NHV","Nuku Hiva","Nuku Hiva","PF");
		airportlocations[airportlocations.length] = new airportlocation("PPT","Papeete","Faa'a","PF");
		airportlocations[airportlocations.length] = new airportlocation("RFP","Raiatea","Raiatea","PF");
		airportlocations[airportlocations.length] = new airportlocation("RGI","Rangiroa","Rangiroa","PF");
		airportlocations[airportlocations.length] = new airportlocation("TIH","Tikehau Atoll","Tikehau Atoll","PF");
		airportlocations[airportlocations.length] = new airportlocation("LBV","Libreville","Libreville","GA");
		airportlocations[airportlocations.length] = new airportlocation("BJL","Banjul","Yundum International","GM");
		airportlocations[airportlocations.length] = new airportlocation("TBS","Tbilisi","Novo Alexeyevka","GE");
		airportlocations[airportlocations.length] = new airportlocation("BER","Berlin","Berlin Metropolitan Area","DE");
		airportlocations[airportlocations.length] = new airportlocation("TXL","Berlin, Berlin-tegel / Otto Lilienthal","Berlin-tegel / Otto Lilienthal","DE");
		airportlocations[airportlocations.length] = new airportlocation("SXF","Berlin, Schoenefeld","Schoenefeld","DE");
		airportlocations[airportlocations.length] = new airportlocation("THF","Berlin, Tempelhof","Tempelhof","DE");
		airportlocations[airportlocations.length] = new airportlocation("BRE","Bremen","Bremen","DE");
		airportlocations[airportlocations.length] = new airportlocation("CGN","Cologne","Cologne/bonn","DE");
		airportlocations[airportlocations.length] = new airportlocation("DTM","Dortmund","Dortmund","DE");
		airportlocations[airportlocations.length] = new airportlocation("DRS","Dresden","Dresden Arpt","DE");
		airportlocations[airportlocations.length] = new airportlocation("DUS","Dusseldorf","Düsseldorf International Airport (rhein-ruhr)","DE");
		airportlocations[airportlocations.length] = new airportlocation("FRA","Frankfurt","Frankfurt International Airport (rhein-main)","DE");
		airportlocations[airportlocations.length] = new airportlocation("FDH","Friedrichshafen","Friedrichshafen","DE");
		airportlocations[airportlocations.length] = new airportlocation("HAM","Hamburg","Hamburg Airport","DE");
		airportlocations[airportlocations.length] = new airportlocation("HAJ","Hanover","Hanover Arpt","DE");
		airportlocations[airportlocations.length] = new airportlocation("HDB","Heidelberg","Heidelberg","DE");
		airportlocations[airportlocations.length] = new airportlocation("HOQ","Hof","Hof","DE");
		airportlocations[airportlocations.length] = new airportlocation("KEL","Kiel","Kiel-Holtenau","DE");
		airportlocations[airportlocations.length] = new airportlocation("LEJ","Leipzig-halle","Leipzig-halle","DE");
		airportlocations[airportlocations.length] = new airportlocation("FMO","Muenster/Osnabrueck","Greven","DE");
		airportlocations[airportlocations.length] = new airportlocation("MUC","Munich","Franz Josef Strauss","DE");
		airportlocations[airportlocations.length] = new airportlocation("NUE","Nurnberg","Nürnberg","DE");
		airportlocations[airportlocations.length] = new airportlocation("PAD","Paderborn","Paderborn/lippstadt","DE");
		airportlocations[airportlocations.length] = new airportlocation("SCN","Saarbruecken","Ensheim","DE");
		airportlocations[airportlocations.length] = new airportlocation("STR","Stuttgart","Echterdingen","DE");
		airportlocations[airportlocations.length] = new airportlocation("UWE","Wiesbaden","Metropolitan Area","DE");
		airportlocations[airportlocations.length] = new airportlocation("ACC","Accra","Kotoka","GH");
		airportlocations[airportlocations.length] = new airportlocation("GIB","Gibraltar","North Front","GI");
		airportlocations[airportlocations.length] = new airportlocation("AXD","Alexandroupolis","Dimokritos","GR");
		airportlocations[airportlocations.length] = new airportlocation("JTY","Astypalaia Island","Astypalaia","GR");
		airportlocations[airportlocations.length] = new airportlocation("ATH","Athens","Eleftherios Venizelos","GR");
		airportlocations[airportlocations.length] = new airportlocation("CHQ","Chania","Souda","GR");
		airportlocations[airportlocations.length] = new airportlocation("JKH","Chios","Chios","GR");
		airportlocations[airportlocations.length] = new airportlocation("HER","Heraklion","Nikos Kazantzakis Airport","GR");
		airportlocations[airportlocations.length] = new airportlocation("JIK","Ikaria Island","Ikaria","GR");
		airportlocations[airportlocations.length] = new airportlocation("IOA","Ioannina","Ioannina","GR");
		airportlocations[airportlocations.length] = new airportlocation("AOK","Karpathos","Karpathos","GR");
		airportlocations[airportlocations.length] = new airportlocation("KSJ","Kasos Island","Kasos Island","GR");
		airportlocations[airportlocations.length] = new airportlocation("KZS","Kastelorizo","Kastelorizo","GR");
		airportlocations[airportlocations.length] = new airportlocation("KSO","Kastoria","Aristoteles Airport","GR");
		airportlocations[airportlocations.length] = new airportlocation("KVA","Kavala","Megas Alexandros Apt.","GR");
		airportlocations[airportlocations.length] = new airportlocation("EFL","Kefalonia","Kefalonia Istland International Airport","GR");
		airportlocations[airportlocations.length] = new airportlocation("CFU","Kerkyra","Ioannis Kapodistrias","GR");
		airportlocations[airportlocations.length] = new airportlocation("KIT","Kithira","Kithira","GR");
		airportlocations[airportlocations.length] = new airportlocation("KGS","Kos","Kos Island International Airport","GR");
		airportlocations[airportlocations.length] = new airportlocation("KZI","Kozani","Philippos Airport","GR");
		airportlocations[airportlocations.length] = new airportlocation("LRS","Leros","Leros","GR");
		airportlocations[airportlocations.length] = new airportlocation("LXS","Limnos","Limnos","GR");
		airportlocations[airportlocations.length] = new airportlocation("JMK","Mikonos","Mikonos","GR");
		airportlocations[airportlocations.length] = new airportlocation("MLO","Milos","Milos","GR");
		airportlocations[airportlocations.length] = new airportlocation("MJT","Mytilene","Mytilene International Airport","GR");
		airportlocations[airportlocations.length] = new airportlocation("JNX","Naxos","Naxos Airport","GR");
		airportlocations[airportlocations.length] = new airportlocation("PAS","Paros","Paros","GR");
		airportlocations[airportlocations.length] = new airportlocation("PVK","Preveza/Lefkas","Aktion","GR");
		airportlocations[airportlocations.length] = new airportlocation("RHO","Rhodes","Diagoras","GR");
		airportlocations[airportlocations.length] = new airportlocation("SMI","Samos","Samos","GR");
		airportlocations[airportlocations.length] = new airportlocation("JTR","Santorini (Thira)","Santorini (Thira)","GR");
		airportlocations[airportlocations.length] = new airportlocation("JSH","Sitia","Sitia","GR");
		airportlocations[airportlocations.length] = new airportlocation("JSI","Skiathos","Skiathos","GR");
		airportlocations[airportlocations.length] = new airportlocation("JSY","Syros Island","Syros Island","GR");
		airportlocations[airportlocations.length] = new airportlocation("SKG","Thessaloniki","Macedonia International","GR");
		airportlocations[airportlocations.length] = new airportlocation("ZTH","Zakinthos","Zakinthos International Airport","GR");
		airportlocations[airportlocations.length] = new airportlocation("SFJ","Kangerlussuaq","Kangerlussuaq","GL");
		airportlocations[airportlocations.length] = new airportlocation("JSU","Maniitsoq","Heliport","GL");
		airportlocations[airportlocations.length] = new airportlocation("GND","St. Georges","Point Salines International","GD");
		airportlocations[airportlocations.length] = new airportlocation("PTP","Pointe-a-pitre","Le Raizet","GP");
		airportlocations[airportlocations.length] = new airportlocation("SBH","St Barthelemy","St Barthelemy","GP");
		airportlocations[airportlocations.length] = new airportlocation("GUM","Agana","Guam International","GU");
		airportlocations[airportlocations.length] = new airportlocation("FRS","Flores","Santa Elena","GT");
		airportlocations[airportlocations.length] = new airportlocation("GUA","Guatemala City","La Aurora","GT");
		airportlocations[airportlocations.length] = new airportlocation("CKY","Conakry","Conakry","GN");
		airportlocations[airportlocations.length] = new airportlocation("GEO","Georgetown","Cheddi Jagan International","GY");
		airportlocations[airportlocations.length] = new airportlocation("PAP","Port Au Prince","Toussaint Louverture International","HT");
		airportlocations[airportlocations.length] = new airportlocation("RTB","Roatan","Roatan","HN");
		airportlocations[airportlocations.length] = new airportlocation("SAP","San Pedro Sula","Ramon Villeda Morales","HN");
		airportlocations[airportlocations.length] = new airportlocation("TGU","Tegucigalpa","Toncontin","HN");
		airportlocations[airportlocations.length] = new airportlocation("TJI","Trujillo","Capiro","HN");
		airportlocations[airportlocations.length] = new airportlocation("HKG","Hong Kong","Hong Kong International","HK");
		airportlocations[airportlocations.length] = new airportlocation("BUD","Budapest","Ferihegy","HU");
		airportlocations[airportlocations.length] = new airportlocation("REK","Reykjavik","Metropolitan Area","IS");
		airportlocations[airportlocations.length] = new airportlocation("KEF","Reykjavik, Keflavik International","Keflavik International","IS");
		airportlocations[airportlocations.length] = new airportlocation("IXA","Agartala","Singerbhil","IN");
		airportlocations[airportlocations.length] = new airportlocation("AGR","Agra","Kheria","IN");
		airportlocations[airportlocations.length] = new airportlocation("AMD","Ahmedabad","Ahmedabad","IN");
		airportlocations[airportlocations.length] = new airportlocation("AJL","Aizawl","Aizawl","IN");
		airportlocations[airportlocations.length] = new airportlocation("IXD","Allahabad","Bamrauli","IN");
		airportlocations[airportlocations.length] = new airportlocation("ATQ","Amritsar","Raja Sansi","IN");
		airportlocations[airportlocations.length] = new airportlocation("IXU","Aurangabad","Chikkalthana","IN");
		airportlocations[airportlocations.length] = new airportlocation("IXB","Bagdogra","Bagdogra","IN");
		airportlocations[airportlocations.length] = new airportlocation("BLR","Bangalore","Bangalore International Airport","IN");
		airportlocations[airportlocations.length] = new airportlocation("BHU","Bhavnagar","Bhavnagar","IN");
		airportlocations[airportlocations.length] = new airportlocation("BHO","Bhopal","Bhopal","IN");
		airportlocations[airportlocations.length] = new airportlocation("BBI","Bhubaneswar","Bhubaneswar","IN");
		airportlocations[airportlocations.length] = new airportlocation("BHJ","Bhuj","Rudra Mata","IN");
		airportlocations[airportlocations.length] = new airportlocation("IXC","Chandigarh","Chandigarh","IN");
		airportlocations[airportlocations.length] = new airportlocation("MAA","Chennai/Madras","Madras International (meenambakkam)","IN");
		airportlocations[airportlocations.length] = new airportlocation("CJB","Coimbatore","Peelamedu","IN");
		airportlocations[airportlocations.length] = new airportlocation("DEL","Delhi","Indira Gandhi Intl","IN");
		airportlocations[airportlocations.length] = new airportlocation("DIB","Dibrugarh","Dibrugarh","IN");
		airportlocations[airportlocations.length] = new airportlocation("DMU","Dimapur","Dimapur","IN");
		airportlocations[airportlocations.length] = new airportlocation("DIU","Diu","Diu","IN");
		airportlocations[airportlocations.length] = new airportlocation("GAU","Gawahati","Borjhar","IN");
		airportlocations[airportlocations.length] = new airportlocation("GAY","Gaya","Gaya","IN");
		airportlocations[airportlocations.length] = new airportlocation("GOI","Goa","Dabolim","IN");
		airportlocations[airportlocations.length] = new airportlocation("GOP","Gorakhpur","Gorakhpur","IN");
		airportlocations[airportlocations.length] = new airportlocation("HBX","Hubli","Hubli","IN");
		airportlocations[airportlocations.length] = new airportlocation("HYD","Hyderabad","Rajiv Gandhi Airport","IN");
		airportlocations[airportlocations.length] = new airportlocation("IMF","Imphal","Municipal","IN");
		airportlocations[airportlocations.length] = new airportlocation("IDR","Indore","Devi Ahilyabai Holkar","IN");
		airportlocations[airportlocations.length] = new airportlocation("JAI","Jaipur","Sanganeer","IN");
		airportlocations[airportlocations.length] = new airportlocation("IXJ","Jammu","Satwari","IN");
		airportlocations[airportlocations.length] = new airportlocation("JGA","Jamnagar","Govardhanpur","IN");
		airportlocations[airportlocations.length] = new airportlocation("JDH","Jodhpur","Jodhpur","IN");
		airportlocations[airportlocations.length] = new airportlocation("JRH","Jorhat","Rowriah","IN");
		airportlocations[airportlocations.length] = new airportlocation("HJR","Khajuraho","Khajuraho","IN");
		airportlocations[airportlocations.length] = new airportlocation("COK","Kochi","Cochin International","IN");
		airportlocations[airportlocations.length] = new airportlocation("CCU","Kolkata","Netaji Subhas Chandra","IN");
		airportlocations[airportlocations.length] = new airportlocation("CCJ","Kozhikode","Kozhikode Airport","IN");
		airportlocations[airportlocations.length] = new airportlocation("IXL","Leh","Bakula Rimpoche","IN");
		airportlocations[airportlocations.length] = new airportlocation("LKO","Lucknow","Amausi","IN");
		airportlocations[airportlocations.length] = new airportlocation("IXM","Madurai","Madurai","IN");
		airportlocations[airportlocations.length] = new airportlocation("IXE","Mangalore","Mangalore","IN");
		airportlocations[airportlocations.length] = new airportlocation("BOM","Mumbai","Chhatrapati Shivaji International","IN");
		airportlocations[airportlocations.length] = new airportlocation("NAG","Nagpur","Sonegaon","IN");
		airportlocations[airportlocations.length] = new airportlocation("PAT","Patna","Patna","IN");
		airportlocations[airportlocations.length] = new airportlocation("PBD","Porbandar","Porbandar","IN");
		airportlocations[airportlocations.length] = new airportlocation("IXZ","Port Blair","Port Blair","IN");
		airportlocations[airportlocations.length] = new airportlocation("PNQ","Pune","Lohegaon","IN");
		airportlocations[airportlocations.length] = new airportlocation("PUT","Puttaparthi","Puttaprathe","IN");
		airportlocations[airportlocations.length] = new airportlocation("RPR","Raipur","Raipur","IN");
		airportlocations[airportlocations.length] = new airportlocation("RAJ","Rajkot","Civil","IN");
		airportlocations[airportlocations.length] = new airportlocation("IXR","Ranchi","Birsa Munda International","IN");
		airportlocations[airportlocations.length] = new airportlocation("IXS","Silchar","Kumbhirgram","IN");
		airportlocations[airportlocations.length] = new airportlocation("SXR","Srinagar","Srinagar","IN");
		airportlocations[airportlocations.length] = new airportlocation("TRZ","Tiruchirapally","Civil","IN");
		airportlocations[airportlocations.length] = new airportlocation("TRV","Trivandrum","Thiruvananthapuram International","IN");
		airportlocations[airportlocations.length] = new airportlocation("UDR","Udaipur","Dabok","IN");
		airportlocations[airportlocations.length] = new airportlocation("BDQ","Vadodara","Vadodara","IN");
		airportlocations[airportlocations.length] = new airportlocation("VNS","Varanasi","Varanasi","IN");
		airportlocations[airportlocations.length] = new airportlocation("VTZ","Vishakhapatnam","Vishakhapatnam","IN");
		airportlocations[airportlocations.length] = new airportlocation("BPN","Balikpapan","Sepingan","ID");
		airportlocations[airportlocations.length] = new airportlocation("BTJ","Banda Aceh","Sultan Lskandarmuda Airport","ID");
		airportlocations[airportlocations.length] = new airportlocation("BDO","Bandung","Husein Sastranegara","ID");
		airportlocations[airportlocations.length] = new airportlocation("BDJ","Banjarmasin","Sjamsudin Noor","ID");
		airportlocations[airportlocations.length] = new airportlocation("BTH","Batam","Hang Nadim","ID");
		airportlocations[airportlocations.length] = new airportlocation("BIK","Biak","Frans Kaisepo","ID");
		airportlocations[airportlocations.length] = new airportlocation("BMU","Bima","Bima","ID");
		airportlocations[airportlocations.length] = new airportlocation("DPS","Denpasar, Bali","Ngurah Rai International","ID");
		airportlocations[airportlocations.length] = new airportlocation("JKT","Jakarta","Soekarno-Hatta International","ID");
		airportlocations[airportlocations.length] = new airportlocation("DJJ","Jayapura","Sentani","ID");
		airportlocations[airportlocations.length] = new airportlocation("KDI","Kendari","Wolter Monginsidi","ID");
		airportlocations[airportlocations.length] = new airportlocation("KOE","Kupang","Eltari","ID");
		airportlocations[airportlocations.length] = new airportlocation("MDC","Manado","Samratulangi","ID");
		airportlocations[airportlocations.length] = new airportlocation("AMI","Mataram","Selaparang","ID");
		airportlocations[airportlocations.length] = new airportlocation("MES","Medan","Polonia","ID");
		airportlocations[airportlocations.length] = new airportlocation("PDG","Padang","Minangkabau International Airport","ID");
		airportlocations[airportlocations.length] = new airportlocation("PLM","Palembang","Mahmud Badaruddin Ii","ID");
		airportlocations[airportlocations.length] = new airportlocation("PKU","Pekanbaru","Simpang Tiga","ID");
		airportlocations[airportlocations.length] = new airportlocation("PNK","Pontianak","Supadio","ID");
		airportlocations[airportlocations.length] = new airportlocation("SRG","Semarang","Achmad Yani","ID");
		airportlocations[airportlocations.length] = new airportlocation("SOC","Solo City","Adi Sumarmo","ID");
		airportlocations[airportlocations.length] = new airportlocation("SOQ","Sorong","Jefman","ID");
		airportlocations[airportlocations.length] = new airportlocation("SUB","Surabaya","Juanda","ID");
		airportlocations[airportlocations.length] = new airportlocation("TRK","Tarakan","Juwata","ID");
		airportlocations[airportlocations.length] = new airportlocation("TIM","Tembagapura","Timika","ID");
		airportlocations[airportlocations.length] = new airportlocation("UPG","Ujung Pandang","Hasanudin","ID");
		airportlocations[airportlocations.length] = new airportlocation("JOG","Yogyakarta","Adisutjipto","ID");
		airportlocations[airportlocations.length] = new airportlocation("AWZ","Ahwaz","Ahwaz","IR");
		airportlocations[airportlocations.length] = new airportlocation("BND","Bandar Abbas","Bandar Abbas","IR");
		airportlocations[airportlocations.length] = new airportlocation("IFN","Isfahan","Shahid Beheshti","IR");
		airportlocations[airportlocations.length] = new airportlocation("KER","Kerman","Kerman","IR");
		airportlocations[airportlocations.length] = new airportlocation("KSH","Kermanshah","Kermanshah","IR");
		airportlocations[airportlocations.length] = new airportlocation("MHD","Mashad","Mashad","IR");
		airportlocations[airportlocations.length] = new airportlocation("RAS","Rasht","Rasht","IR");
		airportlocations[airportlocations.length] = new airportlocation("SYZ","Shiraz","Shiraz","IR");
		airportlocations[airportlocations.length] = new airportlocation("TBZ","Tabriz","Tabriz","IR");
		airportlocations[airportlocations.length] = new airportlocation("THR","Tehran","Mehrabad/ghaleh Morghi","IR");
		airportlocations[airportlocations.length] = new airportlocation("OMH","Urmieh","Urmieh","IR");
		airportlocations[airportlocations.length] = new airportlocation("AZD","Yazd","Yazd","IR");
		airportlocations[airportlocations.length] = new airportlocation("ZAH","Zahedan","Zahedan","IR");
		airportlocations[airportlocations.length] = new airportlocation("CFN","Carrickfinn","Donegal","IE");
		airportlocations[airportlocations.length] = new airportlocation("ORK","Cork","Cork","IE");
		airportlocations[airportlocations.length] = new airportlocation("DUB","Dublin","Dublin","IE");
		airportlocations[airportlocations.length] = new airportlocation("KIR","Farranfore","Kerry","IE");
		airportlocations[airportlocations.length] = new airportlocation("GWY","Galway","Carnmore","IE");
		airportlocations[airportlocations.length] = new airportlocation("NOC","Knock","Ireland West Airport Knock","IE");
		airportlocations[airportlocations.length] = new airportlocation("SNN","Shannon","Shannon","IE");
		airportlocations[airportlocations.length] = new airportlocation("SXL","Sligo","Collooney","IE");
		airportlocations[airportlocations.length] = new airportlocation("ETH","Eilat","Eilat","IL");
		airportlocations[airportlocations.length] = new airportlocation("TLV","Tel Aviv","Ben Gurion Intl","IL");
		airportlocations[airportlocations.length] = new airportlocation("AHO","Alghero","Fertilia","IT");
		airportlocations[airportlocations.length] = new airportlocation("AOI","Ancona","Falconara","IT");
		airportlocations[airportlocations.length] = new airportlocation("BRI","Bari","Palese","IT");
		airportlocations[airportlocations.length] = new airportlocation("BGY","Bergamo","Orio al Serio","IT");
		airportlocations[airportlocations.length] = new airportlocation("BLQ","Bologna","Guglielmo Marconi","IT");
		airportlocations[airportlocations.length] = new airportlocation("BZO","Bolzano","Bolzano","IT");
		airportlocations[airportlocations.length] = new airportlocation("VBS","Brescia","Brescia Montichiari","IT");
		airportlocations[airportlocations.length] = new airportlocation("BDS","Brindisi","Papola Casale","IT");
		airportlocations[airportlocations.length] = new airportlocation("CAG","Cagliari","Elmas","IT");
		airportlocations[airportlocations.length] = new airportlocation("CTA","Catania","Fontanarossa","IT");
		airportlocations[airportlocations.length] = new airportlocation("CRV","Crotone","Crotone","IT");
		airportlocations[airportlocations.length] = new airportlocation("FLR","Florence","Florence Amerigo Vespucci","IT");
		airportlocations[airportlocations.length] = new airportlocation("GOA","Genova","Cristoforo Colombo","IT");
		airportlocations[airportlocations.length] = new airportlocation("SUF","Lamezia-terme","S Eufemia","IT");
		airportlocations[airportlocations.length] = new airportlocation("MIL","Milan","Metropolitan Area","IT");
		airportlocations[airportlocations.length] = new airportlocation("LIN","Milan, Linate","Linate","IT");
		airportlocations[airportlocations.length] = new airportlocation("MXP","Milan, Malpensa","Malpensa","IT");
		airportlocations[airportlocations.length] = new airportlocation("NAP","Napoli","Capodichino","IT");
		airportlocations[airportlocations.length] = new airportlocation("OLB","Olbia","Costa Smeralda","IT");
		airportlocations[airportlocations.length] = new airportlocation("PMO","Palermo","Punta Raisi","IT");
		airportlocations[airportlocations.length] = new airportlocation("PEG","Perugia","Sant Egidio","IT");
		airportlocations[airportlocations.length] = new airportlocation("PSR","Pescara","Liberi","IT");
		airportlocations[airportlocations.length] = new airportlocation("PSA","Pisa","Galileo Galilei","IT");
		airportlocations[airportlocations.length] = new airportlocation("REG","Reggio Calabria","Tito Menniti","IT");
		airportlocations[airportlocations.length] = new airportlocation("RMI","Rimini","Miramare","IT");
		airportlocations[airportlocations.length] = new airportlocation("ROM","Rome","Metropolitan Area","IT");
		airportlocations[airportlocations.length] = new airportlocation("FCO","Rome, Fiumicino","Leonardo da Vinci International (Fiumicino)","IT");
		airportlocations[airportlocations.length] = new airportlocation("TPS","Trapani","Birgi","IT");
		airportlocations[airportlocations.length] = new airportlocation("TRS","Trieste","Ronchi Dei Legionari","IT");
		airportlocations[airportlocations.length] = new airportlocation("TRN","Turin","Sandro Pertini (caselle)","IT");
		airportlocations[airportlocations.length] = new airportlocation("VCE","Venice","Marco Polo","IT");
		airportlocations[airportlocations.length] = new airportlocation("VRN","Verona","Valerio Catullo","IT");
		airportlocations[airportlocations.length] = new airportlocation("KIN","Kingston, Norman Manley","Norman Manley","JM");
		airportlocations[airportlocations.length] = new airportlocation("KTP","Kingston, Tinson","Tinson","JM");
		airportlocations[airportlocations.length] = new airportlocation("MBJ","Montego Bay","Sangster International","JM");
		airportlocations[airportlocations.length] = new airportlocation("AXT","Akita","Akita","JP");
		airportlocations[airportlocations.length] = new airportlocation("ASJ","Amami O Shima","Amami O Shima","JP");
		airportlocations[airportlocations.length] = new airportlocation("AOJ","Aomori","Aomori","JP");
		airportlocations[airportlocations.length] = new airportlocation("AKJ","Asahikawa","Asahikawa","JP");
		airportlocations[airportlocations.length] = new airportlocation("FUJ","Fukue","Fukue","JP");
		airportlocations[airportlocations.length] = new airportlocation("FUK","Fukuoka","Fukuoka","JP");
		airportlocations[airportlocations.length] = new airportlocation("FKS","Fukushima","Fukushima Airport","JP");
		airportlocations[airportlocations.length] = new airportlocation("HKD","Hakodate","Hakodate","JP");
		airportlocations[airportlocations.length] = new airportlocation("HNA","Hanamaki","Hanamaki","JP");
		airportlocations[airportlocations.length] = new airportlocation("HIJ","Hiroshima","International","JP");
		airportlocations[airportlocations.length] = new airportlocation("ISG","Ishigaki","Ishigaki","JP");
		airportlocations[airportlocations.length] = new airportlocation("IWJ","Iwami","Iwami","JP");
		airportlocations[airportlocations.length] = new airportlocation("IZO","Izumo","Izumo","JP");
		airportlocations[airportlocations.length] = new airportlocation("KOJ","Kagoshima","Kagoshima","JP");
		airportlocations[airportlocations.length] = new airportlocation("KKJ","Kita Kyushu","Kita Kyushu","JP");
		airportlocations[airportlocations.length] = new airportlocation("UKB","Kobe","Kobe","JP");
		airportlocations[airportlocations.length] = new airportlocation("KCZ","Kochi","Kochi","JP");
		airportlocations[airportlocations.length] = new airportlocation("KMQ","Komatsu","Komatsu","JP");
		airportlocations[airportlocations.length] = new airportlocation("KMJ","Kumamoto","Kumamoto","JP");
		airportlocations[airportlocations.length] = new airportlocation("UEO","Kumejima","Kumejima","JP");
		airportlocations[airportlocations.length] = new airportlocation("KUH","Kushiro","Kushiro","JP");
		airportlocations[airportlocations.length] = new airportlocation("MMJ","Matsumoto","Matsumoto","JP");
		airportlocations[airportlocations.length] = new airportlocation("MYJ","Matsuyama","Matsuyama","JP");
		airportlocations[airportlocations.length] = new airportlocation("MMB","Memanbetsu","Memanbetsu","JP");
		airportlocations[airportlocations.length] = new airportlocation("MSJ","Misawa","Misawa","JP");
		airportlocations[airportlocations.length] = new airportlocation("MMY","Miyako Jima","Hirara","JP");
		airportlocations[airportlocations.length] = new airportlocation("KMI","Miyazaki","Miyazaki","JP");
		airportlocations[airportlocations.length] = new airportlocation("MBE","Monbetsu","Monbetsu","JP");
		airportlocations[airportlocations.length] = new airportlocation("NGS","Nagasaki","Nagasaki","JP");
		airportlocations[airportlocations.length] = new airportlocation("KIJ","Niigata","Niigata","JP");
		airportlocations[airportlocations.length] = new airportlocation("OBO","Obihiro","Obihiro","JP");
		airportlocations[airportlocations.length] = new airportlocation("ONJ","Odate Noshiro","Odate Noshiro","JP");
		airportlocations[airportlocations.length] = new airportlocation("OIT","Oita","Oita","JP");
		airportlocations[airportlocations.length] = new airportlocation("OKJ","Okayama","Okayama","JP");
		airportlocations[airportlocations.length] = new airportlocation("OKA","Okinawa","Naha","JP");
		airportlocations[airportlocations.length] = new airportlocation("OSA","Osaka","Metropolitan Area","JP");
		airportlocations[airportlocations.length] = new airportlocation("ITM","Osaka, Itami","Itami","JP");
		airportlocations[airportlocations.length] = new airportlocation("KIX","Osaka, Kansai International","Kansai International","JP");
		airportlocations[airportlocations.length] = new airportlocation("SPK","Sapporo","Metropolitan Area","JP");
		airportlocations[airportlocations.length] = new airportlocation("CTS","Sapporo, New Chitose Airport","New Chitose Airport","JP");
		airportlocations[airportlocations.length] = new airportlocation("SDJ","Sendai","Sendai","JP");
		airportlocations[airportlocations.length] = new airportlocation("SHM","Shirahama","Shirahama","JP");
		airportlocations[airportlocations.length] = new airportlocation("SYO","Shonai","Shonai","JP");
		airportlocations[airportlocations.length] = new airportlocation("TAK","Takamatsu","Takamatsu","JP");
		airportlocations[airportlocations.length] = new airportlocation("NGO","Tokoname","Centrair (Central Japan International)","JP");
		airportlocations[airportlocations.length] = new airportlocation("TKN","Tokunoshima","Tokunoshima","JP");
		airportlocations[airportlocations.length] = new airportlocation("TKS","Tokushima","Tokushima","JP");
		airportlocations[airportlocations.length] = new airportlocation("TYO","Tokyo","Metropolitan Area","JP");
		airportlocations[airportlocations.length] = new airportlocation("NRT","Tokyo, Narita International Airport","Narita International Airport","JP");
		airportlocations[airportlocations.length] = new airportlocation("TTJ","Tottori","Tottori","JP");
		airportlocations[airportlocations.length] = new airportlocation("TOY","Toyama","Toyama","JP");
		airportlocations[airportlocations.length] = new airportlocation("UBJ","Ube","Ube","JP");
		airportlocations[airportlocations.length] = new airportlocation("GAJ","Yamagata","Junmachi","JP");
		airportlocations[airportlocations.length] = new airportlocation("YGJ","Yonago","Miho","JP");
		airportlocations[airportlocations.length] = new airportlocation("AMM","Amman","Queen Alia Intl","JO");
		airportlocations[airportlocations.length] = new airportlocation("AQJ","Aqaba","King Hussein Intl","JO");
		airportlocations[airportlocations.length] = new airportlocation("ALA","Almaty","Almaty","KZ");
		airportlocations[airportlocations.length] = new airportlocation("TSE","Astana","Astana","KZ");
		airportlocations[airportlocations.length] = new airportlocation("GUW","Atyrau","Atyrau International","KZ");
		airportlocations[airportlocations.length] = new airportlocation("KGF","Karaganda","Karaganda","KZ");
		airportlocations[airportlocations.length] = new airportlocation("PWQ","Pavlodar","Pavlodar","KZ");
		airportlocations[airportlocations.length] = new airportlocation("KIS","Kisumu","Kisumu","KE");
		airportlocations[airportlocations.length] = new airportlocation("LAU","Lamu","Lamu","KE");
		airportlocations[airportlocations.length] = new airportlocation("MYD","Malindi","Malindi","KE");
		airportlocations[airportlocations.length] = new airportlocation("MBA","Mombasa","Moi International","KE");
		airportlocations[airportlocations.length] = new airportlocation("NBO","Nairobi","Jomo Kenyatta International","KE");
		airportlocations[airportlocations.length] = new airportlocation("CXI","Christmas Island","Cassidy International Airport","KI");
		airportlocations[airportlocations.length] = new airportlocation("TRW","Tarawa","Bonriki","KI");
		airportlocations[airportlocations.length] = new airportlocation("PUS","Busan","Gimhae","KR");
		airportlocations[airportlocations.length] = new airportlocation("CJJ","Cheongju","Cheongju","KR");
		airportlocations[airportlocations.length] = new airportlocation("TAE","Daegu","Daegu","KR");
		airportlocations[airportlocations.length] = new airportlocation("KWJ","Gwangju","Gwangju","KR");
		airportlocations[airportlocations.length] = new airportlocation("CJU","Jeju","Jeju Airport","KR");
		airportlocations[airportlocations.length] = new airportlocation("HIN","Jinju","Sacheon","KR");
		airportlocations[airportlocations.length] = new airportlocation("MPK","Mokpo","Mokpo","KR");
		airportlocations[airportlocations.length] = new airportlocation("KPO","Pohang","Pohang","KR");
		airportlocations[airportlocations.length] = new airportlocation("SEL","Seoul","Metropolitan Area","KR");
		airportlocations[airportlocations.length] = new airportlocation("GMP","Seoul, Gimpo International","Gimpo International","KR");
		airportlocations[airportlocations.length] = new airportlocation("ICN","Seoul, Incheon International","Incheon International","KR");
		airportlocations[airportlocations.length] = new airportlocation("USN","Ulsan","Ulsan","KR");
		airportlocations[airportlocations.length] = new airportlocation("RSU","Yeosu","Yeosu","KR");
		airportlocations[airportlocations.length] = new airportlocation("KWI","Kuwait City","Kuwait International","KW");
		airportlocations[airportlocations.length] = new airportlocation("FRU","Bishkek","Manas (Bishkek)","KG");
		airportlocations[airportlocations.length] = new airportlocation("LPQ","Luang Prabang","Luang Prabang","LA");
		airportlocations[airportlocations.length] = new airportlocation("PKZ","Pakse","Pakse","LA");
		airportlocations[airportlocations.length] = new airportlocation("VTE","Vientiane","Wattay","LA");
		airportlocations[airportlocations.length] = new airportlocation("XKH","Xieng Khouang","Xieng Khouang","LA");
		airportlocations[airportlocations.length] = new airportlocation("RIX","Riga","Riga International","LV");
		airportlocations[airportlocations.length] = new airportlocation("BEY","Beirut","Rafic Hariri International Airport","LB");
		airportlocations[airportlocations.length] = new airportlocation("KYE","Tripoli","Kleyate","LB");
		airportlocations[airportlocations.length] = new airportlocation("MSU","Maseru","Moshoeshoe Intl","LS");
		airportlocations[airportlocations.length] = new airportlocation("ROB","Monrovia","Roberts Intl","LR");
		airportlocations[airportlocations.length] = new airportlocation("BEN","Benghazi","Benina Intl","LY");
		airportlocations[airportlocations.length] = new airportlocation("TIP","Tripoli","International","LY");
		airportlocations[airportlocations.length] = new airportlocation("PLQ","Klaipeda/Palanga","Palanga International","LT");
		airportlocations[airportlocations.length] = new airportlocation("VNO","Vilnius","Vilnius","LT");
		airportlocations[airportlocations.length] = new airportlocation("LUX","Luxembourg","Findel","LU");
		airportlocations[airportlocations.length] = new airportlocation("MFM","Macau","Macau International","MO");
		airportlocations[airportlocations.length] = new airportlocation("OHD","Ohrid","Ohrid","MK");
		airportlocations[airportlocations.length] = new airportlocation("SKP","Skopje","Petrovec","MK");
		airportlocations[airportlocations.length] = new airportlocation("TNR","Antananarivo","Antananarivo","MG");
		airportlocations[airportlocations.length] = new airportlocation("DIE","Antsiranana","Antsiranana/Arrachart","MG");
		airportlocations[airportlocations.length] = new airportlocation("FTU","Fort Dauphin","Marillac","MG");
		airportlocations[airportlocations.length] = new airportlocation("MOQ","Morondava","Morondava","MG");
		airportlocations[airportlocations.length] = new airportlocation("NOS","Nossi-be","Fascene","MG");
		airportlocations[airportlocations.length] = new airportlocation("TMM","Tamatave","Tamatave","MG");
		airportlocations[airportlocations.length] = new airportlocation("TLE","Tulear","Tulear","MG");
		airportlocations[airportlocations.length] = new airportlocation("BLZ","Blantyre","Chileka","MW");
		airportlocations[airportlocations.length] = new airportlocation("LLW","Lilongwe","Kumuzu International Airport","MW");
		airportlocations[airportlocations.length] = new airportlocation("AOR","Alor Setar","Alor Setar","MY");
		airportlocations[airportlocations.length] = new airportlocation("BTU","Bintulu","Bintulu","MY");
		airportlocations[airportlocations.length] = new airportlocation("IPH","Ipoh","Sultan Azlan Shah Airport","MY");
		airportlocations[airportlocations.length] = new airportlocation("JHB","Johor Bahru","Sultan Ismail Intl","MY");
		airportlocations[airportlocations.length] = new airportlocation("KBR","Kota Bharu","Pengkalan Chepa","MY");
		airportlocations[airportlocations.length] = new airportlocation("BKI","Kota-Kinabalu","Kota-Kinabalu International Airport","MY");
		airportlocations[airportlocations.length] = new airportlocation("KUL","Kuala Lumpur","Kuala Lumpur International Airport (klia)","MY");
		airportlocations[airportlocations.length] = new airportlocation("TGG","Kuala Terengganu","Sultan Mahmood","MY");
		airportlocations[airportlocations.length] = new airportlocation("KUA","Kuantan","Kuantan","MY");
		airportlocations[airportlocations.length] = new airportlocation("KCH","Kuching","Kuching","MY");
		airportlocations[airportlocations.length] = new airportlocation("LBU","Labuan","Labuan","MY");
		airportlocations[airportlocations.length] = new airportlocation("LDU","Lahad Datu","Lahad Datu","MY");
		airportlocations[airportlocations.length] = new airportlocation("LGK","Langkawi","Langakawi Intl","MY");
		airportlocations[airportlocations.length] = new airportlocation("LMN","Limbang","Limbang","MY");
		airportlocations[airportlocations.length] = new airportlocation("MYY","Miri","Miri","MY");
		airportlocations[airportlocations.length] = new airportlocation("MZV","Mulu, Sarawak","Mulu, Sarawak","MY");
		airportlocations[airportlocations.length] = new airportlocation("PKG","Pangkor","Pangkor Airport","MY");
		airportlocations[airportlocations.length] = new airportlocation("PEN","Penang","Penang International","MY");
		airportlocations[airportlocations.length] = new airportlocation("SDK","Sandakan","Sandakan","MY");
		airportlocations[airportlocations.length] = new airportlocation("SBW","Sibu","Sibu","MY");
		airportlocations[airportlocations.length] = new airportlocation("TWU","Tawau","Tawau","MY");
		airportlocations[airportlocations.length] = new airportlocation("TOD","Tioman","Tioman","MY");
		airportlocations[airportlocations.length] = new airportlocation("MLE","Male","Male International","MV");
		airportlocations[airportlocations.length] = new airportlocation("BKO","Bamako","Bamako","ML");
		airportlocations[airportlocations.length] = new airportlocation("TOM","Tombouctou","Tombouctou","ML");
		airportlocations[airportlocations.length] = new airportlocation("GZM","Gozo","Gozo Heliport","MT");
		airportlocations[airportlocations.length] = new airportlocation("MLA","Gudja","Malta International","MT");
		airportlocations[airportlocations.length] = new airportlocation("KWA","Kwajalein","Kwajalein","MH");
		airportlocations[airportlocations.length] = new airportlocation("MAJ","Majuro","Amata Kabua Intl","MH");
		airportlocations[airportlocations.length] = new airportlocation("FDF","Fort De France","Lamentin","MQ");
		airportlocations[airportlocations.length] = new airportlocation("NKC","Nouakchott","Nouakchott","MR");
		airportlocations[airportlocations.length] = new airportlocation("MRU","Plaisance","Sir Seewoosagur Ramgoolam Int","MU");
		airportlocations[airportlocations.length] = new airportlocation("RRG","Rodrigues Is","Rodrigues Is","MU");
		airportlocations[airportlocations.length] = new airportlocation("ACA","Acapulco","General Juan N. Alvarez International","MX");
		airportlocations[airportlocations.length] = new airportlocation("AGU","Aguascalientes","Aguascalients","MX");
		airportlocations[airportlocations.length] = new airportlocation("CPE","Campeche","Campeche International","MX");
		airportlocations[airportlocations.length] = new airportlocation("CUN","Cancun","Cancun","MX");
		airportlocations[airportlocations.length] = new airportlocation("CUU","Chihuahua","Gen Fierro Villalobos","MX");
		airportlocations[airportlocations.length] = new airportlocation("CME","Ciudad Del Carmen","Ciudad Del Carmen","MX");
		airportlocations[airportlocations.length] = new airportlocation("CEN","Ciudad Obregon","Ciudad Obregon","MX");
		airportlocations[airportlocations.length] = new airportlocation("CLQ","Colima","Colima","MX");
		airportlocations[airportlocations.length] = new airportlocation("CZM","Cozumel","Cozumel","MX");
		airportlocations[airportlocations.length] = new airportlocation("CUL","Culiacan","Fedl De Bachigualato","MX");
		airportlocations[airportlocations.length] = new airportlocation("DGO","Durango","Guadalupe Victoria","MX");
		airportlocations[airportlocations.length] = new airportlocation("GDL","Guadalajara","Miguel Hidalgo International Airport","MX");
		airportlocations[airportlocations.length] = new airportlocation("HMO","Hermosillo","Gen Pesqueira Garcia","MX");
		airportlocations[airportlocations.length] = new airportlocation("HUX","Huatulco","Huatulco","MX");
		airportlocations[airportlocations.length] = new airportlocation("ZIH","Ixtapa/Zihuatanejo","Internacional","MX");
		airportlocations[airportlocations.length] = new airportlocation("LAP","La Paz","General Manuel Márquez De León International Airpo","MX");
		airportlocations[airportlocations.length] = new airportlocation("BJX","Leon","Del Bajío International","MX");
		airportlocations[airportlocations.length] = new airportlocation("LTO","Loreto","Loreto","MX");
		airportlocations[airportlocations.length] = new airportlocation("LMM","Los Mochis","Federal (Valle Del Fuerte)","MX");
		airportlocations[airportlocations.length] = new airportlocation("ZLO","Manzanillo","Manzanillo","MX");
		airportlocations[airportlocations.length] = new airportlocation("MZT","Mazatlan","Gen Rafael Buelna","MX");
		airportlocations[airportlocations.length] = new airportlocation("MID","Merida","Rejon","MX");
		airportlocations[airportlocations.length] = new airportlocation("MXL","Mexicali","Mexicali","MX");
		airportlocations[airportlocations.length] = new airportlocation("MEX","Mexico City","Benito Juarez International","MX");
		airportlocations[airportlocations.length] = new airportlocation("MTT","Minatitlan","Minatitlan","MX");
		airportlocations[airportlocations.length] = new airportlocation("MTY","Monterrey","Gen Mariano Escobedo","MX");
		airportlocations[airportlocations.length] = new airportlocation("MLM","Morelia","Francisco J. Múgica Internacional","MX");
		airportlocations[airportlocations.length] = new airportlocation("OAX","Oaxaca","Xoxocotlan","MX");
		airportlocations[airportlocations.length] = new airportlocation("PAZ","Poza Rica","Tajin","MX");
		airportlocations[airportlocations.length] = new airportlocation("PBC","Puebla","Huejotsingo","MX");
		airportlocations[airportlocations.length] = new airportlocation("PXM","Puerto Escondido","Puerto Escondido","MX");
		airportlocations[airportlocations.length] = new airportlocation("PVR","Puerto Vallarta","Licenciado Gustavo Díaz Ordaz International","MX");
		airportlocations[airportlocations.length] = new airportlocation("QRO","Queretaro","Queretaro","MX");
		airportlocations[airportlocations.length] = new airportlocation("SLW","Saltillo","Saltillo","MX");
		airportlocations[airportlocations.length] = new airportlocation("SJD","San Jose Del Cabo","Los Cabos","MX");
		airportlocations[airportlocations.length] = new airportlocation("SLP","San Luis Potosi","San Luis Potosi","MX");
		airportlocations[airportlocations.length] = new airportlocation("TAM","Tampico","Gen F Javier Mina","MX");
		airportlocations[airportlocations.length] = new airportlocation("TAP","Tapachula","Tapachula International","MX");
		airportlocations[airportlocations.length] = new airportlocation("TIJ","Tijuana","General A. L. Rodriguez Intl","MX");
		airportlocations[airportlocations.length] = new airportlocation("TRC","Torreon","Francisco Sarabia","MX");
		airportlocations[airportlocations.length] = new airportlocation("TGZ","Tuxtla Gutierrez","Llano San Juan","MX");
		airportlocations[airportlocations.length] = new airportlocation("UPN","Uruapan","Uruapan","MX");
		airportlocations[airportlocations.length] = new airportlocation("VER","Veracruz","Las Bajadas","MX");
		airportlocations[airportlocations.length] = new airportlocation("VSA","Villahermosa","Capitan Carlos Rovirosa","MX");
		airportlocations[airportlocations.length] = new airportlocation("ZCL","Zacatecas","La Calera","MX");
		airportlocations[airportlocations.length] = new airportlocation("KSA","Kosrae","Kosrae","FM");
		airportlocations[airportlocations.length] = new airportlocation("PNI","Pohnpei","Pohnpei","FM");
		airportlocations[airportlocations.length] = new airportlocation("TKK","Truk","Truk","FM");
		airportlocations[airportlocations.length] = new airportlocation("YAP","Yap, Caroline Islands","Yap International","FM");
		airportlocations[airportlocations.length] = new airportlocation("KIV","Chisinau","Chisinau","MD");
		airportlocations[airportlocations.length] = new airportlocation("ULN","Ulaanbaatar","Chinggis Khaan International","MN");
		airportlocations[airportlocations.length] = new airportlocation("TGD","Podgorica","Golubovci","ME");
		airportlocations[airportlocations.length] = new airportlocation("TIV","Tivat","Tivat","ME");
		airportlocations[airportlocations.length] = new airportlocation("AGA","Agadir","Agadir Almassira","MA");
		airportlocations[airportlocations.length] = new airportlocation("CAS","Casablanca","Anfa","MA");
		airportlocations[airportlocations.length] = new airportlocation("ERH","Er-Rachidia","Moulay Ali Cherif","MA");
		airportlocations[airportlocations.length] = new airportlocation("FEZ","Fez","Sais","MA");
		airportlocations[airportlocations.length] = new airportlocation("RAK","Marrakech","Menara","MA");
		airportlocations[airportlocations.length] = new airportlocation("NDR","Nador","Nador","MA");
		airportlocations[airportlocations.length] = new airportlocation("OZZ","Ouarzazate","Ouarzazate","MA");
		airportlocations[airportlocations.length] = new airportlocation("OUD","Oujda","Les Angades","MA");
		airportlocations[airportlocations.length] = new airportlocation("RBA","Rabat","Sale","MA");
		airportlocations[airportlocations.length] = new airportlocation("TNG","Tangier","Boukhalef","MA");
		airportlocations[airportlocations.length] = new airportlocation("BEW","Beira","Beira","MZ");
		airportlocations[airportlocations.length] = new airportlocation("MPM","Maputo","Maputo International","MZ");
		airportlocations[airportlocations.length] = new airportlocation("APL","Nampula","Nampula","MZ");
		airportlocations[airportlocations.length] = new airportlocation("POL","Pemba","Porto Amelia","MZ");
		airportlocations[airportlocations.length] = new airportlocation("UEL","Quelimane","Quelimane","MZ");
		airportlocations[airportlocations.length] = new airportlocation("VNX","Vilanculos","Vilanculos","MZ");
		airportlocations[airportlocations.length] = new airportlocation("RGN","Yangon","Mingaladon","MM");
		airportlocations[airportlocations.length] = new airportlocation("MPA","Mpacha","Mpacha","NA");
		airportlocations[airportlocations.length] = new airportlocation("OND","Ondangwa","Ondangwa","NA");
		airportlocations[airportlocations.length] = new airportlocation("WVB","Walvis Bay","Rooikop","NA");
		airportlocations[airportlocations.length] = new airportlocation("ERS","Windhoek","Eros","NA");
		airportlocations[airportlocations.length] = new airportlocation("WDH","Windhoek","Hosea Kutako International (J. G. Strijdom)","NA");
		airportlocations[airportlocations.length] = new airportlocation("INU","Nauru Island","International","NR");
		airportlocations[airportlocations.length] = new airportlocation("KTM","Kathmandu","Tribhuvan","NP");
		airportlocations[airportlocations.length] = new airportlocation("LUA","Lukla","Lukla","NP");
		airportlocations[airportlocations.length] = new airportlocation("PKR","Pokhara","Pokhara","NP");
		airportlocations[airportlocations.length] = new airportlocation("AMS","Amsterdam","Amsterdam-Schiphol","NL");
		airportlocations[airportlocations.length] = new airportlocation("EIN","Eindhoven","Eindhoven","NL");
		airportlocations[airportlocations.length] = new airportlocation("GRQ","Groningen","Eelde","NL");
		airportlocations[airportlocations.length] = new airportlocation("MST","Maastricht","Maastricht/aachen","NL");
		airportlocations[airportlocations.length] = new airportlocation("RTM","Rotterdam","Rotterdam Zestienhoven","NL");
		airportlocations[airportlocations.length] = new airportlocation("CUR","Curacao","Hato International Airport","AN");
		airportlocations[airportlocations.length] = new airportlocation("BON","Kralendijk","Flamingo International","AN");
		airportlocations[airportlocations.length] = new airportlocation("SXM","St Maarten","Princess Juliana International","AN");
		airportlocations[airportlocations.length] = new airportlocation("NOU","Noumea","Tontouta","NC");
		airportlocations[airportlocations.length] = new airportlocation("MGA","Managua","Augusto C Sandino","NI");
		airportlocations[airportlocations.length] = new airportlocation("NIM","Niamey","Niamey","NE");
		airportlocations[airportlocations.length] = new airportlocation("ABV","Abuja","Nnamdi Azikiwe International Airport","NG");
		airportlocations[airportlocations.length] = new airportlocation("KAN","Kano","Aminu Kano Intl Apt","NG");
		airportlocations[airportlocations.length] = new airportlocation("LOS","Lagos","Murtala Muhammed","NG");
		airportlocations[airportlocations.length] = new airportlocation("PHC","Port Harcourt","Port Harcourt","NG");
		airportlocations[airportlocations.length] = new airportlocation("IUE","Niue Island","Hanan","NU");
		airportlocations[airportlocations.length] = new airportlocation("ROP","Rota","Rota","MP");
		airportlocations[airportlocations.length] = new airportlocation("SPN","Saipan","International","MP");
		airportlocations[airportlocations.length] = new airportlocation("AES","Aalesund","Vigra","NO");
		airportlocations[airportlocations.length] = new airportlocation("ALF","Alta","Alta","NO");
		airportlocations[airportlocations.length] = new airportlocation("BDU","Bardufoss","Bardufoss","NO");
		airportlocations[airportlocations.length] = new airportlocation("BGO","Bergen","Bergen Airport, Flesland","NO");
		airportlocations[airportlocations.length] = new airportlocation("BOO","Bodo","Bodo","NO");
		airportlocations[airportlocations.length] = new airportlocation("BNN","Bronnoysund","Bronnoy","NO");
		airportlocations[airportlocations.length] = new airportlocation("FDE","Forde","Bringeland","NO");
		airportlocations[airportlocations.length] = new airportlocation("EVE","Harstad-narvik","Evenes","NO");
		airportlocations[airportlocations.length] = new airportlocation("HAU","Haugesund","Haugesund","NO");
		airportlocations[airportlocations.length] = new airportlocation("HVG","Honningsvag","Valan","NO");
		airportlocations[airportlocations.length] = new airportlocation("KKN","Kirkenes","Hoeybuktmoen","NO");
		airportlocations[airportlocations.length] = new airportlocation("KRS","Kristiansand","Kjevik","NO");
		airportlocations[airportlocations.length] = new airportlocation("KSU","Kristiansund","Kvernberget","NO");
		airportlocations[airportlocations.length] = new airportlocation("LKN","Leknes","Leknes","NO");
		airportlocations[airportlocations.length] = new airportlocation("LYR","Longyearbyen","Svalbard","NO");
		airportlocations[airportlocations.length] = new airportlocation("MQN","Mo I Rana","Mo I Rana","NO");
		airportlocations[airportlocations.length] = new airportlocation("MOL","Molde","Aro","NO");
		airportlocations[airportlocations.length] = new airportlocation("OSY","Namsos","Namsos","NO");
		airportlocations[airportlocations.length] = new airportlocation("HOV","Orsta-Volda","Hovden","NO");
		airportlocations[airportlocations.length] = new airportlocation("OSL","Oslo","Oslo Airport, Gardermoen","NO");
		airportlocations[airportlocations.length] = new airportlocation("SDN","Sandane","Sandane","NO");
		airportlocations[airportlocations.length] = new airportlocation("SSJ","Sandnessjoen","Stokka","NO");
		airportlocations[airportlocations.length] = new airportlocation("SOG","Sogndal","Haukasen","NO");
		airportlocations[airportlocations.length] = new airportlocation("SVG","Stavanger","Sola","NO");
		airportlocations[airportlocations.length] = new airportlocation("SKN","Stokmarknes","Skagen","NO");
		airportlocations[airportlocations.length] = new airportlocation("SRP","Stord","Stord Airport","NO");
		airportlocations[airportlocations.length] = new airportlocation("SVJ","Svolvaer","Helle","NO");
		airportlocations[airportlocations.length] = new airportlocation("TRF","Torp","Sandefjord","NO");
		airportlocations[airportlocations.length] = new airportlocation("TOS","Tromso","Tromso/langnes","NO");
		airportlocations[airportlocations.length] = new airportlocation("TRD","Trondheim","Vaernes","NO");
		airportlocations[airportlocations.length] = new airportlocation("MCT","Muscat","Seeb","OM");
		airportlocations[airportlocations.length] = new airportlocation("SLL","Salalah","Salalah","OM");
		airportlocations[airportlocations.length] = new airportlocation("LYP","Faisalabad","Faisalabad","PK");
		airportlocations[airportlocations.length] = new airportlocation("ISB","Islamabad","Islamabad International","PK");
		airportlocations[airportlocations.length] = new airportlocation("KHI","Karachi","Quaid-e-azam Intl","PK");
		airportlocations[airportlocations.length] = new airportlocation("LHE","Lahore","Alama Iqbal International","PK");
		airportlocations[airportlocations.length] = new airportlocation("MUX","Multan","Multan","PK");
		airportlocations[airportlocations.length] = new airportlocation("PEW","Peshawar","Peshawar","PK");
		airportlocations[airportlocations.length] = new airportlocation("UET","Quetta","Quetta","PK");
		airportlocations[airportlocations.length] = new airportlocation("SKZ","Sukkur","Sukkur","PK");
		airportlocations[airportlocations.length] = new airportlocation("ROR","Koror","Babelthuap/Koror","PW");
		airportlocations[airportlocations.length] = new airportlocation("PTY","Panama City","Tocumen International","PA");
		airportlocations[airportlocations.length] = new airportlocation("GUR","Alotau","Gurney","PG");
		airportlocations[airportlocations.length] = new airportlocation("VMU","Baimuru","Baimuru","PG");
		airportlocations[airportlocations.length] = new airportlocation("OPU","Balimo","Balimo","PG");
		airportlocations[airportlocations.length] = new airportlocation("BUA","Buka","Buka","PG");
		airportlocations[airportlocations.length] = new airportlocation("DAU","Daru","Daru","PG");
		airportlocations[airportlocations.length] = new airportlocation("GKA","Goroka","Goroka","PG");
		airportlocations[airportlocations.length] = new airportlocation("HKN","Hoskins","Hoskins","PG");
		airportlocations[airportlocations.length] = new airportlocation("KVG","Kavieng","Kavieng","PG");
		airportlocations[airportlocations.length] = new airportlocation("UNG","Kiunga","Kiunga","PG");
		airportlocations[airportlocations.length] = new airportlocation("KKD","Kokoda","Kokoda","PG");
		airportlocations[airportlocations.length] = new airportlocation("LAE","Lae","Nadzab","PG");
		airportlocations[airportlocations.length] = new airportlocation("LNV","Lihir Island","Lihir Island","PG");
		airportlocations[airportlocations.length] = new airportlocation("LSA","Losuia","Losuia","PG");
		airportlocations[airportlocations.length] = new airportlocation("MAG","Madang","Madang","PG");
		airportlocations[airportlocations.length] = new airportlocation("MAS","Manus Island","Momote","PG");
		airportlocations[airportlocations.length] = new airportlocation("MDU","Mendi","Mendi","PG");
		airportlocations[airportlocations.length] = new airportlocation("MIS","Misima Island","Misima Island","PG");
		airportlocations[airportlocations.length] = new airportlocation("HGU","Mount Hagen","Kagamuga","PG");
		airportlocations[airportlocations.length] = new airportlocation("IIS","Nissan Island","Nissan Island","PG");
		airportlocations[airportlocations.length] = new airportlocation("PNP","Popondetta","Girua","PG");
		airportlocations[airportlocations.length] = new airportlocation("POM","Port Moresby","Jackson Fld","PG");
		airportlocations[airportlocations.length] = new airportlocation("RAB","Rabaul","Tokua","PG");
		airportlocations[airportlocations.length] = new airportlocation("SAM","Salamo","Salamo","PG");
		airportlocations[airportlocations.length] = new airportlocation("SKC","Suki","Suki","PG");
		airportlocations[airportlocations.length] = new airportlocation("TBG","Tabubil","Tabubil","PG");
		airportlocations[airportlocations.length] = new airportlocation("TIZ","Tari","Tari","PG");
		airportlocations[airportlocations.length] = new airportlocation("VAI","Vanimo","Vanimo","PG");
		airportlocations[airportlocations.length] = new airportlocation("WBM","Wapenamanda","Wapenamanda","PG");
		airportlocations[airportlocations.length] = new airportlocation("WWK","Wewak","Boram","PG");
		airportlocations[airportlocations.length] = new airportlocation("ASU","Asuncion","Silvio Pettirossi","PY");
		airportlocations[airportlocations.length] = new airportlocation("AGT","Ciudad del Este","Alejo Garcia","PY");
		airportlocations[airportlocations.length] = new airportlocation("AQP","Arequipa","Rodriguez Ballon","PE");
		airportlocations[airportlocations.length] = new airportlocation("CIX","Chiclayo","Cornel Ruiz","PE");
		airportlocations[airportlocations.length] = new airportlocation("CUZ","Cuzco","Velazco Astete","PE");
		airportlocations[airportlocations.length] = new airportlocation("IQT","Iquitos","C.F. Secada","PE");
		airportlocations[airportlocations.length] = new airportlocation("JUL","Juliaca","Juliaca","PE");
		airportlocations[airportlocations.length] = new airportlocation("LIM","Lima","Jorge Chavez International","PE");
		airportlocations[airportlocations.length] = new airportlocation("PIU","Piura","Piura","PE");
		airportlocations[airportlocations.length] = new airportlocation("PEM","Puerto Maldonado","Puerto Maldonado","PE");
		airportlocations[airportlocations.length] = new airportlocation("TCQ","Tacna","Tacna","PE");
		airportlocations[airportlocations.length] = new airportlocation("TPP","Tarapoto","Tarapoto","PE");
		airportlocations[airportlocations.length] = new airportlocation("TRU","Trujillo","Trujillo","PE");
		airportlocations[airportlocations.length] = new airportlocation("TBP","Tumbes","Tumbes","PE");
		airportlocations[airportlocations.length] = new airportlocation("BCD","Bacolod","Bacolod","PH");
		airportlocations[airportlocations.length] = new airportlocation("BXU","Butuan","Butuan","PH");
		airportlocations[airportlocations.length] = new airportlocation("CGY","Cagayan De Oro","Lumbia","PH");
		airportlocations[airportlocations.length] = new airportlocation("CEB","Cebu","Mactan-Cebu International","PH");
		airportlocations[airportlocations.length] = new airportlocation("CBO","Cotabato","Awang","PH");
		airportlocations[airportlocations.length] = new airportlocation("DVO","Davao","Francisco Bangoy International","PH");
		airportlocations[airportlocations.length] = new airportlocation("DPL","Dipolog","Dipolog","PH");
		airportlocations[airportlocations.length] = new airportlocation("DGT","Dumaguete","Dumaguete","PH");
		airportlocations[airportlocations.length] = new airportlocation("GES","General Santos","General Santos International","PH");
		airportlocations[airportlocations.length] = new airportlocation("ILO","Iloilo","Mandurriao","PH");
		airportlocations[airportlocations.length] = new airportlocation("KLO","Kalibo","Kalibo","PH");
		airportlocations[airportlocations.length] = new airportlocation("LAO","Laoag","Laoag International Airport","PH");
		airportlocations[airportlocations.length] = new airportlocation("LGP","Legazpi","Legazpi","PH");
		airportlocations[airportlocations.length] = new airportlocation("MNL","Manila","Ninoy Aquino Intl","PH");
		airportlocations[airportlocations.length] = new airportlocation("WNP","Naga","Naga","PH");
		airportlocations[airportlocations.length] = new airportlocation("PPS","Puerto Princesa","Puerto Princesa","PH");
		airportlocations[airportlocations.length] = new airportlocation("RXS","Roxas City","Roxas City","PH");
		airportlocations[airportlocations.length] = new airportlocation("TAC","Tacloban","D.Z. Romualdez","PH");
		airportlocations[airportlocations.length] = new airportlocation("TAG","Tagbilaran","Tagbilaran","PH");
		airportlocations[airportlocations.length] = new airportlocation("TUG","Tuguegarao","Tuguegarao","PH");
		airportlocations[airportlocations.length] = new airportlocation("ZAM","Zamboanga","Zamboanga International","PH");
		airportlocations[airportlocations.length] = new airportlocation("BZG","Bydgoszcz","Bydgoszcz I. J. Paderewski Airport","PL");
		airportlocations[airportlocations.length] = new airportlocation("GDN","Gdansk","Lech Walesa","PL");
		airportlocations[airportlocations.length] = new airportlocation("KTW","Katowice","Pyrzowice","PL");
		airportlocations[airportlocations.length] = new airportlocation("KRK","Krakow","J. Paul Ii Balice Intl","PL");
		airportlocations[airportlocations.length] = new airportlocation("LCJ","Lodz","Lodz Lublinek","PL");
		airportlocations[airportlocations.length] = new airportlocation("POZ","Poznan","Lawica","PL");
		airportlocations[airportlocations.length] = new airportlocation("RZE","Rzeszow","Jasionka","PL");
		airportlocations[airportlocations.length] = new airportlocation("SZZ","Szczecin","Goleniow","PL");
		airportlocations[airportlocations.length] = new airportlocation("WAW","Warsaw","Frederic Chopin","PL");
		airportlocations[airportlocations.length] = new airportlocation("WRO","Wroclaw","Copernicus Airport","PL");
		airportlocations[airportlocations.length] = new airportlocation("IEG","Zielona Gora","Babimost","PL");
		airportlocations[airportlocations.length] = new airportlocation("FAO","Faro","Faro","PT");
		airportlocations[airportlocations.length] = new airportlocation("FNC","Funchal","Madeira","PT");
		airportlocations[airportlocations.length] = new airportlocation("LIS","Lisbon","Portela","PT");
		airportlocations[airportlocations.length] = new airportlocation("PDL","Ponta Delgada","Nordela","PT");
		airportlocations[airportlocations.length] = new airportlocation("OPO","Porto","Francisco Sá Carneiro","PT");
		airportlocations[airportlocations.length] = new airportlocation("PSE","Ponce","Mercedita","PR");
		airportlocations[airportlocations.length] = new airportlocation("SJU","San Juan","Luis Munoz Marin Intl","PR");
		airportlocations[airportlocations.length] = new airportlocation("DOH","Doha","Doha","QA");
		airportlocations[airportlocations.length] = new airportlocation("RUN","St Denis de la Reunion","Gillot","RE");
		airportlocations[airportlocations.length] = new airportlocation("ZSE","St Pierre dela Reunion","St Pierre dela Reunion","RE");
		airportlocations[airportlocations.length] = new airportlocation("BCM","Bacau","Bacau","RO");
		airportlocations[airportlocations.length] = new airportlocation("BAY","Baia Mare","Baia Mare","RO");
		airportlocations[airportlocations.length] = new airportlocation("OTP","Bucharest","Henri Coanda International","RO");
		airportlocations[airportlocations.length] = new airportlocation("CLJ","Cluj-Napoca","Cluj Napoca International Airport","RO");
		airportlocations[airportlocations.length] = new airportlocation("IAS","Iasi","Iasi","RO");
		airportlocations[airportlocations.length] = new airportlocation("OMR","Oradea","Oradea","RO");
		airportlocations[airportlocations.length] = new airportlocation("SBZ","Sibiu","Sibiu","RO");
		airportlocations[airportlocations.length] = new airportlocation("TSR","Timisoara","Timisoara (traian Vuia) International","RO");
		airportlocations[airportlocations.length] = new airportlocation("AER","Adler/Sochi","Adler/Sochi","RU");
		airportlocations[airportlocations.length] = new airportlocation("ASF","Astrakhan","Astrakhan","RU");
		airportlocations[airportlocations.length] = new airportlocation("BAX","Barnaul","Barnaul","RU");
		airportlocations[airportlocations.length] = new airportlocation("CEK","Chelyabinsk","Chelyabinsk","RU");
		airportlocations[airportlocations.length] = new airportlocation("SVX","Ekaterinburg","Koltsovo International Airport","RU");
		airportlocations[airportlocations.length] = new airportlocation("IKT","Irkutsk","Irkutsk","RU");
		airportlocations[airportlocations.length] = new airportlocation("KGD","Kaliningrad","Kaliningrad","RU");
		airportlocations[airportlocations.length] = new airportlocation("KZN","Kazan","Kazan","RU");
		airportlocations[airportlocations.length] = new airportlocation("KEJ","Kemerovo","Kemerovo","RU");
		airportlocations[airportlocations.length] = new airportlocation("KHV","Khabarovsk","Novyy","RU");
		airportlocations[airportlocations.length] = new airportlocation("KRR","Krasnodar","Rostov","RU");
		airportlocations[airportlocations.length] = new airportlocation("KJA","Krasnojarsk","Krasnojarsk","RU");
		airportlocations[airportlocations.length] = new airportlocation("KRO","Kurgan","Kurgan","RU");
		airportlocations[airportlocations.length] = new airportlocation("MCX","Makhachkala","Makhachkala","RU");
		airportlocations[airportlocations.length] = new airportlocation("MRV","Mineralnye Vody","Mineralnye Vody","RU");
		airportlocations[airportlocations.length] = new airportlocation("MOW","Moscow","Metropolitan Area","RU");
		airportlocations[airportlocations.length] = new airportlocation("SVO","Moscow, Sheremetyevo","Sheremetyevo","RU");
		airportlocations[airportlocations.length] = new airportlocation("VKO","Moscow, Vnukovo","Vnukovo","RU");
		airportlocations[airportlocations.length] = new airportlocation("GOJ","Nizhniy Novgorod","Nizhniy Novgorod","RU");
		airportlocations[airportlocations.length] = new airportlocation("NSK","Noril'sk","Noril'sk","RU");
		airportlocations[airportlocations.length] = new airportlocation("NOZ","Novokuznetsk","Novokuznetsk","RU");
		airportlocations[airportlocations.length] = new airportlocation("OVB","Novosibirsk","Tolmachevo","RU");
		airportlocations[airportlocations.length] = new airportlocation("OMS","Omsk","Omsk","RU");
		airportlocations[airportlocations.length] = new airportlocation("PEE","Perm","Perm","RU");
		airportlocations[airportlocations.length] = new airportlocation("PKC","Petropavlovsk-Kamchats","Petropavlovsk-Kamchats","RU");
		airportlocations[airportlocations.length] = new airportlocation("ROV","Rostov","Rostov","RU");
		airportlocations[airportlocations.length] = new airportlocation("KUF","Samara","Kurumoch","RU");
		airportlocations[airportlocations.length] = new airportlocation("LED","St Petersburg","Pulkovo","RU");
		airportlocations[airportlocations.length] = new airportlocation("SGC","Surgut","Surgut","RU");
		airportlocations[airportlocations.length] = new airportlocation("TOF","Tomsk","Tomsk","RU");
		airportlocations[airportlocations.length] = new airportlocation("UFA","Ufa","Ufa","RU");
		airportlocations[airportlocations.length] = new airportlocation("UUD","Ulan-ude","Ulan-ude, Mukhino","RU");
		airportlocations[airportlocations.length] = new airportlocation("VVO","Vladivostok","Vladivostok","RU");
		airportlocations[airportlocations.length] = new airportlocation("VOG","Volgograd","Volgograd","RU");
		airportlocations[airportlocations.length] = new airportlocation("VOZ","Voronezh","Chertovitskoye","RU");
		airportlocations[airportlocations.length] = new airportlocation("UUS","Yuzhno-Sakhalinsk","Yuzhno-Sakhalinsk","RU");
		airportlocations[airportlocations.length] = new airportlocation("KGL","Kigali","Gregoire Kayibanda","RW");
		airportlocations[airportlocations.length] = new airportlocation("SKB","Basseterre, St. Kitts Island","Robert L Bradshaw International","KN");
		airportlocations[airportlocations.length] = new airportlocation("NEV","Nevis","Newcastle","KN");
		airportlocations[airportlocations.length] = new airportlocation("SLU","St Lucia, George F L Charles","George F L Charles","LC");
		airportlocations[airportlocations.length] = new airportlocation("UVF","St Lucia, Hewanorra","Hewanorra","LC");
		airportlocations[airportlocations.length] = new airportlocation("MQS","Mustique Island","Mustique","VC");
		airportlocations[airportlocations.length] = new airportlocation("SVD","St Vincent","E. T. Joshua","VC");
		airportlocations[airportlocations.length] = new airportlocation("APW","Apia","Faleolo","WS");
		airportlocations[airportlocations.length] = new airportlocation("FGI","Apia","Fagali I","WS");
		airportlocations[airportlocations.length] = new airportlocation("MXS","Maota Savaii Is","Maota Savaii Is","WS");
		airportlocations[airportlocations.length] = new airportlocation("TMS","Sao Tome Is","Sao Tome Is","ST");
		airportlocations[airportlocations.length] = new airportlocation("AHB","Abha","Abha","SA");
		airportlocations[airportlocations.length] = new airportlocation("ELQ","Buraidah","Gassim Regional Airport","SA");
		airportlocations[airportlocations.length] = new airportlocation("DMM","Dammam","King Fahd International Airport","SA");
		airportlocations[airportlocations.length] = new airportlocation("JED","Jeddah","King Abdulaziz International","SA");
		airportlocations[airportlocations.length] = new airportlocation("MED","Madinah","Mohammad Bin Abdulaziz","SA");
		airportlocations[airportlocations.length] = new airportlocation("RUH","Riyadh","King Khaled Intl","SA");
		airportlocations[airportlocations.length] = new airportlocation("TUU","Tabuk","Tabuk","SA");
		airportlocations[airportlocations.length] = new airportlocation("WAE","Wadi Ad Dawasir","Wadi Ad Dawasir","SA");
		airportlocations[airportlocations.length] = new airportlocation("YNB","Yanbu","Yanbu","SA");
		airportlocations[airportlocations.length] = new airportlocation("DKR","Dakar","Dakar-Yoff-Léopold Sédar Senghor International","SN");
		airportlocations[airportlocations.length] = new airportlocation("BEG","Belgrade","Nikola Tesla","RS");
		airportlocations[airportlocations.length] = new airportlocation("PRN","Prishtina","Prishtina International Airport","RS");
		airportlocations[airportlocations.length] = new airportlocation("SEZ","Mahe Island","Seychelles International Airport","SC");
		airportlocations[airportlocations.length] = new airportlocation("PRI","Praslin Island","Praslin Island","SC");
		airportlocations[airportlocations.length] = new airportlocation("FNA","Freetown","Lungi International","SL");
		airportlocations[airportlocations.length] = new airportlocation("SIN","Singapore","Changi","SG");
		airportlocations[airportlocations.length] = new airportlocation("XSP","Singapore, Seletar","Seletar","SG");
		airportlocations[airportlocations.length] = new airportlocation("BTS","Bratislava","M. R. Štefánika","SK");
		airportlocations[airportlocations.length] = new airportlocation("KSC","Kosice","Barca","SK");
		airportlocations[airportlocations.length] = new airportlocation("SLD","Sliac","Sliac","SK");
		airportlocations[airportlocations.length] = new airportlocation("LJU","Ljubljana","Brnik","SI");
		airportlocations[airportlocations.length] = new airportlocation("AKS","Auki","Gwaunaru'u","SB");
		airportlocations[airportlocations.length] = new airportlocation("CHY","Choiseul Bay","Choiseul Bay","SB");
		airportlocations[airportlocations.length] = new airportlocation("FRE","Fera Island","Fera Island","SB");
		airportlocations[airportlocations.length] = new airportlocation("GZO","Gizo","Gizo","SB");
		airportlocations[airportlocations.length] = new airportlocation("HIR","Honiara","Henderson Intl","SB");
		airportlocations[airportlocations.length] = new airportlocation("IRA","Kirakira","Kirakira","SB");
		airportlocations[airportlocations.length] = new airportlocation("MUA","Munda","Munda","SB");
		airportlocations[airportlocations.length] = new airportlocation("RBV","Ramata","Ramata","SB");
		airportlocations[airportlocations.length] = new airportlocation("SCZ","Santa Cruz Is","Santa Cruz Is","SB");
		airportlocations[airportlocations.length] = new airportlocation("EGM","Sege","Sege","SB");
		airportlocations[airportlocations.length] = new airportlocation("HGA","Hargeisa","Hargeisa","SO");
		airportlocations[airportlocations.length] = new airportlocation("BFN","Bloemfontein","Bloemfontein Int'l","ZA");
		airportlocations[airportlocations.length] = new airportlocation("CPT","Cape Town","Cape Town International","ZA");
		airportlocations[airportlocations.length] = new airportlocation("DUR","Durban","Durban International","ZA");
		airportlocations[airportlocations.length] = new airportlocation("ELS","East London","East London","ZA");
		airportlocations[airportlocations.length] = new airportlocation("GRJ","George","George","ZA");
		airportlocations[airportlocations.length] = new airportlocation("HDS","Hoedspruit","Hoedspruit Airport","ZA");
		airportlocations[airportlocations.length] = new airportlocation("JNB","Johannesburg","Oliver Reginald Tambo International","ZA");
		airportlocations[airportlocations.length] = new airportlocation("KIM","Kimberley","Kimberley","ZA");
		airportlocations[airportlocations.length] = new airportlocation("AAM","Mala Mala","Mala Mala","ZA");
		airportlocations[airportlocations.length] = new airportlocation("MGH","Margate","Margate","ZA");
		airportlocations[airportlocations.length] = new airportlocation("MBD","Mmabatho","Mafikeng International Airport","ZA");
		airportlocations[airportlocations.length] = new airportlocation("MQP","Nelspruit","Kruger Mpumalanga","ZA");
		airportlocations[airportlocations.length] = new airportlocation("PHW","Phalaborwa","Cape Town","ZA");
		airportlocations[airportlocations.length] = new airportlocation("PZB","Pietermaritzburg","Pietermaritzburg Oribi","ZA");
		airportlocations[airportlocations.length] = new airportlocation("PTG","Polokwane","Polokwane","ZA");
		airportlocations[airportlocations.length] = new airportlocation("PLZ","Port Elizabeth","Port Elizabeth","ZA");
		airportlocations[airportlocations.length] = new airportlocation("RCB","Richards Bay","Richards Bay","ZA");
		airportlocations[airportlocations.length] = new airportlocation("NTY","Sun City","Pilanesberg","ZA");
		airportlocations[airportlocations.length] = new airportlocation("UTT","Umtata","Umtata","ZA");
		airportlocations[airportlocations.length] = new airportlocation("UTN","Upington","Upington","ZA");
		airportlocations[airportlocations.length] = new airportlocation("ALC","Alicante","Alicante El Altet","ES");
		airportlocations[airportlocations.length] = new airportlocation("LEI","Almeria","Almeria","ES");
		airportlocations[airportlocations.length] = new airportlocation("ACE","Arrecife","Lanzarote","ES");
		airportlocations[airportlocations.length] = new airportlocation("BJZ","Badajoz","Talaveral La Real","ES");
		airportlocations[airportlocations.length] = new airportlocation("BCN","Barcelona","El Prat De Llobregat","ES");
		airportlocations[airportlocations.length] = new airportlocation("BIO","Bilbao","Sondica","ES");
		airportlocations[airportlocations.length] = new airportlocation("GRO","Gerona","Girona-Costa Brava","ES");
		airportlocations[airportlocations.length] = new airportlocation("GRX","Granada","Granada","ES");
		airportlocations[airportlocations.length] = new airportlocation("IBZ","Ibiza","Ibiza","ES");
		airportlocations[airportlocations.length] = new airportlocation("XRY","Jerez De La Frontera","Jerez De La Frontera","ES");
		airportlocations[airportlocations.length] = new airportlocation("LCG","La Coruna","La Coruna","ES");
		airportlocations[airportlocations.length] = new airportlocation("LPA","Las Palmas","Gran Canaria","ES");
		airportlocations[airportlocations.length] = new airportlocation("LEN","Leon","Leon","ES");
		airportlocations[airportlocations.length] = new airportlocation("RJL","Logrono","Agoncillo","ES");
		airportlocations[airportlocations.length] = new airportlocation("MAD","Madrid","Barajas","ES");
		airportlocations[airportlocations.length] = new airportlocation("AGP","Malaga","Malaga","ES");
		airportlocations[airportlocations.length] = new airportlocation("MAH","Menorca","Mahon","ES");
		airportlocations[airportlocations.length] = new airportlocation("MJV","Murcia","San Javier","ES");
		airportlocations[airportlocations.length] = new airportlocation("OVD","Oviedo/Aviles","Asturias","ES");
		airportlocations[airportlocations.length] = new airportlocation("PMI","Palma Mallorca","Son Sant Joan Airport","ES");
		airportlocations[airportlocations.length] = new airportlocation("PNA","Pamplona","Pamplona","ES");
		airportlocations[airportlocations.length] = new airportlocation("FUE","Puerto del Rosario","Fuerteventura","ES");
		airportlocations[airportlocations.length] = new airportlocation("EAS","San Sebastian","Donostia - San Sebastian","ES");
		airportlocations[airportlocations.length] = new airportlocation("SPC","Santa Cruz De La Palma","La Palma","ES");
		airportlocations[airportlocations.length] = new airportlocation("SDR","Santander","Santander","ES");
		airportlocations[airportlocations.length] = new airportlocation("SCQ","Santiago De Compostela","Santiago De Compostela","ES");
		airportlocations[airportlocations.length] = new airportlocation("SVQ","Sevilla","San Pablo","ES");
		airportlocations[airportlocations.length] = new airportlocation("TCI","Tenerife","Metropolitan Area","ES");
		airportlocations[airportlocations.length] = new airportlocation("TFN","Tenerife, Norte Los Rodeos","Norte Los Rodeos","ES");
		airportlocations[airportlocations.length] = new airportlocation("TFS","Tenerife, Sur Reina Sofia","Sur Reina Sofia","ES");
		airportlocations[airportlocations.length] = new airportlocation("VLC","Valencia","Manises","ES");
		airportlocations[airportlocations.length] = new airportlocation("VLL","Valladolid","Valladolid","ES");
		airportlocations[airportlocations.length] = new airportlocation("VGO","Vigo","Vigo","ES");
		airportlocations[airportlocations.length] = new airportlocation("ZAZ","Zaragoza","Zaragoza","ES");
		airportlocations[airportlocations.length] = new airportlocation("CMB","Colombo","Bandaranayake","LK");
		airportlocations[airportlocations.length] = new airportlocation("JUB","Juba","Juba","SD");
		airportlocations[airportlocations.length] = new airportlocation("KRT","Khartoum","Civil","SD");
		airportlocations[airportlocations.length] = new airportlocation("PBM","Paramaribo","Zanderij Intl","SR");
		airportlocations[airportlocations.length] = new airportlocation("MTS","Manzini","Matsapha Intl","SZ");
		airportlocations[airportlocations.length] = new airportlocation("AGH","Angelholm/Helsingborg","Angelholm","SE");
		airportlocations[airportlocations.length] = new airportlocation("AJR","Arvidsjaur","Arvidsjaur","SE");
		airportlocations[airportlocations.length] = new airportlocation("BLE","Borlange","Dala Airport","SE");
		airportlocations[airportlocations.length] = new airportlocation("GOT","Gothenburg","Landvetter","SE");
		airportlocations[airportlocations.length] = new airportlocation("HAD","Halmstad","Halmstad","SE");
		airportlocations[airportlocations.length] = new airportlocation("JKG","Jonkoping","Axamo","SE");
		airportlocations[airportlocations.length] = new airportlocation("KLR","Kalmar","Kalmar","SE");
		airportlocations[airportlocations.length] = new airportlocation("KSD","Karlstad","Karlstad","SE");
		airportlocations[airportlocations.length] = new airportlocation("KRN","Kiruna","Kiruna","SE");
		airportlocations[airportlocations.length] = new airportlocation("KID","Kristianstad","Kristianstad","SE");
		airportlocations[airportlocations.length] = new airportlocation("LPI","Linkoping","Linkoping","SE");
		airportlocations[airportlocations.length] = new airportlocation("LLA","Lulea","Kallax","SE");
		airportlocations[airportlocations.length] = new airportlocation("MMX","Malmo","Sturup","SE");
		airportlocations[airportlocations.length] = new airportlocation("MXX","Mora","Mora","SE");
		airportlocations[airportlocations.length] = new airportlocation("NRK","Norrkoping","Kungsangen","SE");
		airportlocations[airportlocations.length] = new airportlocation("OER","Ornskoldsvik","Ornskoldsvik","SE");
		airportlocations[airportlocations.length] = new airportlocation("OSD","Ostersund","Froesoe","SE");
		airportlocations[airportlocations.length] = new airportlocation("RNB","Ronneby","Kallinge","SE");
		airportlocations[airportlocations.length] = new airportlocation("SFT","Skelleftea","Skelleftea","SE");
		airportlocations[airportlocations.length] = new airportlocation("STO","Stockholm","Metropolitan Area","SE");
		airportlocations[airportlocations.length] = new airportlocation("ARN","Stockholm, Arlanda","Arlanda","SE");
		airportlocations[airportlocations.length] = new airportlocation("BMA","Stockholm, Bromma","Bromma","SE");
		airportlocations[airportlocations.length] = new airportlocation("SDL","Sundsvall","Sundsvall/harnosand","SE");
		airportlocations[airportlocations.length] = new airportlocation("THN","Trollhattan","Trollhattan","SE");
		airportlocations[airportlocations.length] = new airportlocation("UME","Umea","Umea","SE");
		airportlocations[airportlocations.length] = new airportlocation("VXO","Växjö","Vaxjo","SE");
		airportlocations[airportlocations.length] = new airportlocation("VBY","Visby","Visby","SE");
		airportlocations[airportlocations.length] = new airportlocation("ACH","Altenrhein","Altenrhein","CH");
		airportlocations[airportlocations.length] = new airportlocation("BRN","Berne","Belp","CH");
		airportlocations[airportlocations.length] = new airportlocation("GVA","Geneva","Geneve-cointrin","CH");
		airportlocations[airportlocations.length] = new airportlocation("LUG","Lugano/Agno","Lugano","CH");
		airportlocations[airportlocations.length] = new airportlocation("BSL","Mulhouse/basel","Euroairport Basel Mulhouse Freiburg","CH");
		airportlocations[airportlocations.length] = new airportlocation("ZRH","Zurich","Zürich-Kloten","CH");
		airportlocations[airportlocations.length] = new airportlocation("ALP","Aleppo","Nejrab","SY");
		airportlocations[airportlocations.length] = new airportlocation("DAM","Damascus","International","SY");
		airportlocations[airportlocations.length] = new airportlocation("KAC","Kameshli","Kameshli","SY");
		airportlocations[airportlocations.length] = new airportlocation("KHH","Kaohsiung","Kaoshiung International Airport","TW");
		airportlocations[airportlocations.length] = new airportlocation("KNH","Kinmen","Shang-Yi","TW");
		airportlocations[airportlocations.length] = new airportlocation("TXG","Taichung","Taichung","TW");
		airportlocations[airportlocations.length] = new airportlocation("TNN","Tainan","Tainan","TW");
		airportlocations[airportlocations.length] = new airportlocation("TPE","Taipei, Chiang Kai Shek","Chiang Kai Shek","TW");
		airportlocations[airportlocations.length] = new airportlocation("TSA","Taipei, Sung Shan","Sung Shan","TW");
		airportlocations[airportlocations.length] = new airportlocation("TTT","Taitung","Taitung","TW");
		airportlocations[airportlocations.length] = new airportlocation("DYU","Dushanbe","Dushanbe","TJ");
		airportlocations[airportlocations.length] = new airportlocation("DAR","Dar Es Salaam","International","TZ");
		airportlocations[airportlocations.length] = new airportlocation("JRO","Kilimanjaro","Kilimanjaro","TZ");
		airportlocations[airportlocations.length] = new airportlocation("MYW","Mtwara","Mtwara","TZ");
		airportlocations[airportlocations.length] = new airportlocation("MWZ","Mwanza","Mwanza","TZ");
		airportlocations[airportlocations.length] = new airportlocation("SHY","Shinyanga","Shinyanga","TZ");
		airportlocations[airportlocations.length] = new airportlocation("ZNZ","Zanzibar","Kisauni","TZ");
		airportlocations[airportlocations.length] = new airportlocation("BKK","Bangkok","Suvarnabhumi International","TH");
		airportlocations[airportlocations.length] = new airportlocation("BFV","Buri Ram","Buri Ram","TH");
		airportlocations[airportlocations.length] = new airportlocation("CNX","Chiang Mai","Chiang Mai International","TH");
		airportlocations[airportlocations.length] = new airportlocation("CEI","Chiang Rai","Chiang Rai","TH");
		airportlocations[airportlocations.length] = new airportlocation("HDY","Hat Yai","Hat Yai","TH");
		airportlocations[airportlocations.length] = new airportlocation("KKC","Khon Kaen","Khon Kaen","TH");
		airportlocations[airportlocations.length] = new airportlocation("USM","Koh Samui","Koh Samui","TH");
		airportlocations[airportlocations.length] = new airportlocation("KBV","Krabi","Krabi","TH");
		airportlocations[airportlocations.length] = new airportlocation("LPT","Lampang","Lampang","TH");
		airportlocations[airportlocations.length] = new airportlocation("HGN","Mae Hong Son","Mae Hong Son","TH");
		airportlocations[airportlocations.length] = new airportlocation("MAQ","Mae Sot","Mae Sot","TH");
		airportlocations[airportlocations.length] = new airportlocation("KOP","Nakhon Phanom","Nakhon Phanom","TH");
		airportlocations[airportlocations.length] = new airportlocation("NST","Nakhon Si Thammarat","Nakhon Si Thammarat","TH");
		airportlocations[airportlocations.length] = new airportlocation("NNT","Nan","Nan","TH");
		airportlocations[airportlocations.length] = new airportlocation("PHY","Phetchabun","Phetchabun","TH");
		airportlocations[airportlocations.length] = new airportlocation("PHS","Phitsanulok","Phitsanulok","TH");
		airportlocations[airportlocations.length] = new airportlocation("HKT","Phuket","Phuket International","TH");
		airportlocations[airportlocations.length] = new airportlocation("ROI","Roi Et","Roi Et Airport","TH");
		airportlocations[airportlocations.length] = new airportlocation("SNO","Sakon Nakhon","Sakon Nakhon","TH");
		airportlocations[airportlocations.length] = new airportlocation("THS","Sukhothai","Sukhothai","TH");
		airportlocations[airportlocations.length] = new airportlocation("URT","Surat Thani","Surat Thani","TH");
		airportlocations[airportlocations.length] = new airportlocation("TST","Trang","Trang","TH");
		airportlocations[airportlocations.length] = new airportlocation("TDX","Trat","Trat","TH");
		airportlocations[airportlocations.length] = new airportlocation("UBP","Ubon Ratchathni","Muang Ubon","TH");
		airportlocations[airportlocations.length] = new airportlocation("UTH","Udon Thani","Udon Thani","TH");
		airportlocations[airportlocations.length] = new airportlocation("UTP","Utapao","Utapao","TH");
		airportlocations[airportlocations.length] = new airportlocation("LFW","Lome","Lome","TG");
		airportlocations[airportlocations.length] = new airportlocation("EUA","Eua","Kaufana","TO");
		airportlocations[airportlocations.length] = new airportlocation("HPA","Ha'Apai","Salote Pilolevu","TO");
		airportlocations[airportlocations.length] = new airportlocation("TBU","Nuku'alofa","Fua'amotu International","TO");
		airportlocations[airportlocations.length] = new airportlocation("VAV","Vava'u","Lupepau'u","TO");
		airportlocations[airportlocations.length] = new airportlocation("POS","Piarco","Piarco International","TT");
		airportlocations[airportlocations.length] = new airportlocation("TAB","Tobago","Crown Point Airport","TT");
		airportlocations[airportlocations.length] = new airportlocation("DJE","Djerba","Djerba-zarzis","TN");
		airportlocations[airportlocations.length] = new airportlocation("TUN","Tunis","Carthage","TN");
		airportlocations[airportlocations.length] = new airportlocation("ADA","Adana","Adana","TR");
		airportlocations[airportlocations.length] = new airportlocation("ANK","Ankara","Etimesgut","TR");
		airportlocations[airportlocations.length] = new airportlocation("AYT","Antalya","Antalya","TR");
		airportlocations[airportlocations.length] = new airportlocation("BJV","Bodrum","Milas Airport","TR");
		airportlocations[airportlocations.length] = new airportlocation("DLM","Dalaman","Dalaman","TR");
		airportlocations[airportlocations.length] = new airportlocation("DNZ","Denizli","Cardak","TR");
		airportlocations[airportlocations.length] = new airportlocation("DIY","Diyarbakir","Diyarbakir","TR");
		airportlocations[airportlocations.length] = new airportlocation("ERC","Erzincan","Erzincan","TR");
		airportlocations[airportlocations.length] = new airportlocation("ERZ","Erzurum","Budrum","TR");
		airportlocations[airportlocations.length] = new airportlocation("GZT","Gaziantep","Gaziantep","TR");
		airportlocations[airportlocations.length] = new airportlocation("IST","Istanbul","Ataturk","TR");
		airportlocations[airportlocations.length] = new airportlocation("SAW","Istanbul, Sabiha Gokcen","Sabiha Gokcen","TR");
		airportlocations[airportlocations.length] = new airportlocation("IZM","Izmir","Metropolitan Area","TR");
		airportlocations[airportlocations.length] = new airportlocation("ADB","Izmir, Adnan Menderes","Adnan Menderes","TR");
		airportlocations[airportlocations.length] = new airportlocation("KSY","Kars","Kars","TR");
		airportlocations[airportlocations.length] = new airportlocation("ASR","Kayseri","Erkilet International Airport","TR");
		airportlocations[airportlocations.length] = new airportlocation("KYA","Konya","Konya","TR");
		airportlocations[airportlocations.length] = new airportlocation("MQM","Mardin","Mardin","TR");
		airportlocations[airportlocations.length] = new airportlocation("SZF","Samsun","Carsamba","TR");
		airportlocations[airportlocations.length] = new airportlocation("SSX","Samsun/carsamba","Samsun","TR");
		airportlocations[airportlocations.length] = new airportlocation("VAS","Sivas","Sivas","TR");
		airportlocations[airportlocations.length] = new airportlocation("TZX","Trabzon","Trabzon","TR");
		airportlocations[airportlocations.length] = new airportlocation("VAN","Van","Van","TR");
		airportlocations[airportlocations.length] = new airportlocation("ASB","Ashgabat","Ashgabat","TM");
		airportlocations[airportlocations.length] = new airportlocation("PLS","Providenciales","International","TC");
		airportlocations[airportlocations.length] = new airportlocation("XSC","South Caicos","International","TC");
		airportlocations[airportlocations.length] = new airportlocation("FUN","Funafuti Atol","International","TV");
		airportlocations[airportlocations.length] = new airportlocation("EBB","Entebbe","Entebbe","UG");
		airportlocations[airportlocations.length] = new airportlocation("DNK","Dnepropetrovsk","Dnepropetrovsk","UA");
		airportlocations[airportlocations.length] = new airportlocation("DOK","Donetsk","Donetsk International Airport","UA");
		airportlocations[airportlocations.length] = new airportlocation("HRK","Kharkov","Kharkov","UA");
		airportlocations[airportlocations.length] = new airportlocation("KBP","Kiev","Borispol","UA");
		airportlocations[airportlocations.length] = new airportlocation("IEV","Kiev, Zhulhany","Zhulhany","UA");
		airportlocations[airportlocations.length] = new airportlocation("VSG","Lugansk","Lugansk","UA");
		airportlocations[airportlocations.length] = new airportlocation("LWO","Lviv","Snilow","UA");
		airportlocations[airportlocations.length] = new airportlocation("ODS","Odessa","Odessa International","UA");
		airportlocations[airportlocations.length] = new airportlocation("SIP","Simferopol","Simferopol","UA");
		airportlocations[airportlocations.length] = new airportlocation("OZH","Zaporozhye","Zaporozhye","UA");
		airportlocations[airportlocations.length] = new airportlocation("AUH","Abu Dhabi","Abu Dhabi International","AE");
		airportlocations[airportlocations.length] = new airportlocation("DXB","Dubai","Dubai","AE");
		airportlocations[airportlocations.length] = new airportlocation("SHJ","Sharjah","Sharjah","AE");
		airportlocations[airportlocations.length] = new airportlocation("ABZ","Aberdeen","Dyce","GB");
		airportlocations[airportlocations.length] = new airportlocation("BRR","Barra","North Bay","GB");
		airportlocations[airportlocations.length] = new airportlocation("BFS","Belfast","Belfast City","GB");
		airportlocations[airportlocations.length] = new airportlocation("BHD","Belfast","George Best Belfast City","GB");
		airportlocations[airportlocations.length] = new airportlocation("BEB","Benbecula","Benbecula","GB");
		airportlocations[airportlocations.length] = new airportlocation("BHX","Birmingham","Birmingham International Airport","GB");
		airportlocations[airportlocations.length] = new airportlocation("BOH","Bournemouth","Bournemouth International","GB");
		airportlocations[airportlocations.length] = new airportlocation("BRS","Bristol","Bristol","GB");
		airportlocations[airportlocations.length] = new airportlocation("CAL","Campbeltown","Machrihanish","GB");
		airportlocations[airportlocations.length] = new airportlocation("CWL","Cardiff","Cardiff-wales Arpt","GB");
		airportlocations[airportlocations.length] = new airportlocation("EMA","Derby","East Midlands","GB");
		airportlocations[airportlocations.length] = new airportlocation("LDY","Derry","Eglinton (City of Derry)","GB");
		airportlocations[airportlocations.length] = new airportlocation("DND","Dundee","Dundee","GB");
		airportlocations[airportlocations.length] = new airportlocation("SOU","Eastleigh near Southampton","Southampton Airport","GB");
		airportlocations[airportlocations.length] = new airportlocation("EDI","Edinburgh","Turnhouse","GB");
		airportlocations[airportlocations.length] = new airportlocation("EXT","Exeter","Exeter","GB");
		airportlocations[airportlocations.length] = new airportlocation("GLA","Glasgow","Glasgow International","GB");
		airportlocations[airportlocations.length] = new airportlocation("GCI","Guernsey","Guernsey","GB");
		airportlocations[airportlocations.length] = new airportlocation("HUY","Humberside","Humberside International","GB");
		airportlocations[airportlocations.length] = new airportlocation("INV","Inverness","Inverness","GB");
		airportlocations[airportlocations.length] = new airportlocation("ILY","Islay","Glenegedale","GB");
		airportlocations[airportlocations.length] = new airportlocation("IOM","Isle Of Man","Manchester","GB");
		airportlocations[airportlocations.length] = new airportlocation("JER","Jersey","Jersey","GB");
		airportlocations[airportlocations.length] = new airportlocation("LBA","Leeds","Leeds/Bradford","GB");
		airportlocations[airportlocations.length] = new airportlocation("LPL","Liverpool","Liverpool John Lennon","GB");
		airportlocations[airportlocations.length] = new airportlocation("LON","London","Metropolitan Area","GB");
		airportlocations[airportlocations.length] = new airportlocation("LCY","London, City Airport","City Airport","GB");
		airportlocations[airportlocations.length] = new airportlocation("LGW","London, Gatwick","Gatwick","GB");
		airportlocations[airportlocations.length] = new airportlocation("LHR","London, Heathrow","Heathrow","GB");
		airportlocations[airportlocations.length] = new airportlocation("STN","London, Stansted","Stansted","GB");
		airportlocations[airportlocations.length] = new airportlocation("LTN","London, Luton","London Luton","GB");
		airportlocations[airportlocations.length] = new airportlocation("MAN","Manchester","Manchester","GB");
		airportlocations[airportlocations.length] = new airportlocation("NCL","Newcastle","Newcastle Airport","GB");
		airportlocations[airportlocations.length] = new airportlocation("NQY","Newquay","Newquay Cornwall Airport","GB");
		airportlocations[airportlocations.length] = new airportlocation("NWI","Norwich","Norwich International Airport","GB");
		airportlocations[airportlocations.length] = new airportlocation("KOI","Orkney Island","Orkney Island","GB");
		airportlocations[airportlocations.length] = new airportlocation("PLH","Plymouth","Plymouth","GB");
		airportlocations[airportlocations.length] = new airportlocation("SZD","Sheffield","Sheffield City Airport","GB");
		airportlocations[airportlocations.length] = new airportlocation("LSI","Shetland Islands","Sumburgh","GB");
		airportlocations[airportlocations.length] = new airportlocation("SYY","Stornoway","Stornoway","GB");
		airportlocations[airportlocations.length] = new airportlocation("MME","Teesside","Durham Tees Valley","GB");
		airportlocations[airportlocations.length] = new airportlocation("TRE","Tiree","Tiree","GB");
		airportlocations[airportlocations.length] = new airportlocation("WIC","Wick","Wick","GB");
		airportlocations[airportlocations.length] = new airportlocation("ABR","Aberdeen","Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("ABI","Abilene","Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("CAK","Akron/Canton","Akron/Canton Regional","US");
		airportlocations[airportlocations.length] = new airportlocation("MOB","Alabama","Mobile Regional Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("ALB","Albany, Albany International","Albany International","US");
		airportlocations[airportlocations.length] = new airportlocation("ABY","Albany, Dougherty County","Dougherty County","US");
		airportlocations[airportlocations.length] = new airportlocation("ABQ","Albuquerque","Albuquerque International","US");
		airportlocations[airportlocations.length] = new airportlocation("AEX","Alexandria","Alexandria International","US");
		airportlocations[airportlocations.length] = new airportlocation("ABE","Allentown","Lehigh Valley International","US");
		airportlocations[airportlocations.length] = new airportlocation("AMA","Amarillo","International","US");
		airportlocations[airportlocations.length] = new airportlocation("ANC","Anchorage","Ted Stevens Anchorage International Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("ANI","Aniak","Aniak","US");
		airportlocations[airportlocations.length] = new airportlocation("ATW","Appleton","Outagamie County","US");
		airportlocations[airportlocations.length] = new airportlocation("ACV","Arcata","Arcata","US");
		airportlocations[airportlocations.length] = new airportlocation("ASE","Aspen","Aspen","US");
		airportlocations[airportlocations.length] = new airportlocation("AHN","Athens","Athens","US");
		airportlocations[airportlocations.length] = new airportlocation("ATL","Atlanta","Hartsfield-Jackson Atlanta International","US");
		airportlocations[airportlocations.length] = new airportlocation("ACY","Atlantic City","Atlantic City Intl","US");
		airportlocations[airportlocations.length] = new airportlocation("AGS","Augusta","Bush Field","US");
		airportlocations[airportlocations.length] = new airportlocation("AUG","Augusta","Augusta","US");
		airportlocations[airportlocations.length] = new airportlocation("AUS","Austin","Austin-Bergstrom International","US");
		airportlocations[airportlocations.length] = new airportlocation("BFL","Bakersfield","Meadows Field","US");
		airportlocations[airportlocations.length] = new airportlocation("BWI","Baltimore/Washington","Baltimore/Washington International Thurgood Marsha","US");
		airportlocations[airportlocations.length] = new airportlocation("BGR","Bangor","Bangor International Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("BHB","Bar Harbor","Bar Harbor","US");
		airportlocations[airportlocations.length] = new airportlocation("BRW","Barrow","Wiley Post/W.Rogers M","US");
		airportlocations[airportlocations.length] = new airportlocation("BTR","Baton Rouge","Ryan","US");
		airportlocations[airportlocations.length] = new airportlocation("BPT","Beaumont","Jefferson County","US");
		airportlocations[airportlocations.length] = new airportlocation("BLI","Bellingham","Bellingham","US");
		airportlocations[airportlocations.length] = new airportlocation("BJI","Bemidji","Bemidji","US");
		airportlocations[airportlocations.length] = new airportlocation("BIL","Billings","Billings","US");
		airportlocations[airportlocations.length] = new airportlocation("BGM","Binghamton","Greater Binghamton","US");
		airportlocations[airportlocations.length] = new airportlocation("BHM","Birmingham","Birmingham","US");
		airportlocations[airportlocations.length] = new airportlocation("BIS","Bismarck","Bismarck","US");
		airportlocations[airportlocations.length] = new airportlocation("BMI","Bloomington/Normal","Central Illinois Regional Airport at Bloomington-N","US");
		airportlocations[airportlocations.length] = new airportlocation("TRI","Blountville","Tri-cities Regional","US");
		airportlocations[airportlocations.length] = new airportlocation("BOI","Boise","Air Term. (Gowen Fld)","US");
		airportlocations[airportlocations.length] = new airportlocation("BOS","Boston","Logan International","US");
		airportlocations[airportlocations.length] = new airportlocation("BZN","Bozeman","Gallatin Field","US");
		airportlocations[airportlocations.length] = new airportlocation("BRD","Brainerd","Crow Wing County","US");
		airportlocations[airportlocations.length] = new airportlocation("BRO","Brownsville","South Padre Is. Intl","US");
		airportlocations[airportlocations.length] = new airportlocation("BQK","Brunswick","Glynco Jetport","US");
		airportlocations[airportlocations.length] = new airportlocation("BUF","Buffalo","Buffalo Niagara International","US");
		airportlocations[airportlocations.length] = new airportlocation("BUR","Burbank","Bob Hope","US");
		airportlocations[airportlocations.length] = new airportlocation("BRL","Burlington","Burlington","US");
		airportlocations[airportlocations.length] = new airportlocation("BTV","Burlington, Burlington International","Burlington International","US");
		airportlocations[airportlocations.length] = new airportlocation("BTM","Butte","Bert Mooney Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("CGI","Cape Girardeau","Cape Girardeau","US");
		airportlocations[airportlocations.length] = new airportlocation("CPR","Casper","Casper","US");
		airportlocations[airportlocations.length] = new airportlocation("CDC","Cedar City","Cedar City","US");
		airportlocations[airportlocations.length] = new airportlocation("CID","Cedar Rapids","Cedar Rapids","US");
		airportlocations[airportlocations.length] = new airportlocation("CDR","Chadron","Chadron","US");
		airportlocations[airportlocations.length] = new airportlocation("CMI","Champaign","University Of Illinois Willard","US");
		airportlocations[airportlocations.length] = new airportlocation("CHS","Charleston,  AFB Municipal","Charleston, AFB Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("CRW","Charleston, Yeager","Yeager","US");
		airportlocations[airportlocations.length] = new airportlocation("CLT","Charlotte","Charlotte Douglas","US");
		airportlocations[airportlocations.length] = new airportlocation("CHO","Charlottesville","Albemarle","US");
		airportlocations[airportlocations.length] = new airportlocation("CHA","Chattanooga","Lovell Field","US");
		airportlocations[airportlocations.length] = new airportlocation("CYS","Cheyenne","Cheyenne","US");
		airportlocations[airportlocations.length] = new airportlocation("CHI","Chicago","Chicago FSS","US");
		airportlocations[airportlocations.length] = new airportlocation("ORD","Chicago, O'hare International","Chicago O'hare International","US");
		airportlocations[airportlocations.length] = new airportlocation("MDW","Chicago, Midway","Midway","US");
		airportlocations[airportlocations.length] = new airportlocation("CIC","Chico","Chico","US");
		airportlocations[airportlocations.length] = new airportlocation("HIB","Chisholm","Chisholm","US");
		airportlocations[airportlocations.length] = new airportlocation("CKB","Clarksburg","Benedum","US");
		airportlocations[airportlocations.length] = new airportlocation("PIE","Clearwater","St. Petersburg-Clearwater International","US");
		airportlocations[airportlocations.length] = new airportlocation("CLE","Cleveland","Hopkins International","US");
		airportlocations[airportlocations.length] = new airportlocation("COD","Cody/Yellowstone","Yellowstone Regional","US");
		airportlocations[airportlocations.length] = new airportlocation("CLL","College Station","Easterwood Field","US");
		airportlocations[airportlocations.length] = new airportlocation("COS","Colorado Springs","Colorado Springs","US");
		airportlocations[airportlocations.length] = new airportlocation("COU","Columbia, Regional","Columbia Regional","US");
		airportlocations[airportlocations.length] = new airportlocation("CAE","Columbia, Metropolitan Airport","Metropolitan Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("CSG","Columbus, Metro Ft Benning","Columbus Metro Ft Benning","US");
		airportlocations[airportlocations.length] = new airportlocation("CMH","Columbus, Port Columbus Intl","Port Columbus Intl","US");
		airportlocations[airportlocations.length] = new airportlocation("CDV","Cordova","Mudhole Smith","US");
		airportlocations[airportlocations.length] = new airportlocation("ELM","Corning","Elmira Corning Regional","US");
		airportlocations[airportlocations.length] = new airportlocation("CRP","Corpus Christi","Corpus Christi International Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("CEZ","Cortez","Montezuma County","US");
		airportlocations[airportlocations.length] = new airportlocation("CVG","Covington","Cincinnati/Northern Kentucky","US");
		airportlocations[airportlocations.length] = new airportlocation("CEC","Crescent City","Mc Namara Fld","US");
		airportlocations[airportlocations.length] = new airportlocation("DFW","Dallas/Ft Worth Intl","Dallas/ft Worth Intl","US");
		airportlocations[airportlocations.length] = new airportlocation("DAL","Dallas, Love Field","Love Field","US");
		airportlocations[airportlocations.length] = new airportlocation("DAY","Dayton","James Cox Dayton Intl","US");
		airportlocations[airportlocations.length] = new airportlocation("DAB","Daytona Beach","Regional","US");
		airportlocations[airportlocations.length] = new airportlocation("DRT","Del Rio","International","US");
		airportlocations[airportlocations.length] = new airportlocation("DEN","Denver","Denver International","US");
		airportlocations[airportlocations.length] = new airportlocation("DSM","Des Moines","Des Moines International","US");
		airportlocations[airportlocations.length] = new airportlocation("DTT","Detroit","Metropolitan Area","US");
		airportlocations[airportlocations.length] = new airportlocation("DTW","Detroit","Detroit Metropolitan Wayne County","US");
		airportlocations[airportlocations.length] = new airportlocation("DLG","Dillingham","Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("DDC","Dodge City","Dodge City Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("DHN","Dothan","Dothan Arpt","US");
		airportlocations[airportlocations.length] = new airportlocation("DUJ","Du Bois","Du Bois-Jefferson County","US");
		airportlocations[airportlocations.length] = new airportlocation("DBN","Dublin","Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("IAD","Dulles","Washington Dulles International","US");
		airportlocations[airportlocations.length] = new airportlocation("DLH","Duluth","Duluth International","US");
		airportlocations[airportlocations.length] = new airportlocation("DRO","Durango","La Plata","US");
		airportlocations[airportlocations.length] = new airportlocation("EAU","Eau Claire","Chippewa Valley Regional Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("ELP","El Paso","El Paso International Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("EKO","Elko","Elko","US");
		airportlocations[airportlocations.length] = new airportlocation("ERI","Erie","International","US");
		airportlocations[airportlocations.length] = new airportlocation("EUG","Eugene","Eugene","US");
		airportlocations[airportlocations.length] = new airportlocation("EVV","Evansville","Dress Regional","US");
		airportlocations[airportlocations.length] = new airportlocation("FAI","Fairbanks","Fairbanks International Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("FAR","Fargo","Hector Field","US");
		airportlocations[airportlocations.length] = new airportlocation("FAY","Fayetteville, Municipal","Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("XNA","Fayetteville, Northwest Arkansas Rgn","Northwest Arkansas Rgn","US");
		airportlocations[airportlocations.length] = new airportlocation("AVL","Fletcher","Asheville Regional Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("FNT","Flint","Bishop International Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("FLO","Florence","Florence","US");
		airportlocations[airportlocations.length] = new airportlocation("GRK","Fort Hood","Gray Aaf","US");
		airportlocations[airportlocations.length] = new airportlocation("FLL","Fort Lauderdale","International","US");
		airportlocations[airportlocations.length] = new airportlocation("TBN","Fort Leonard Wood","Forney AAF","US");
		airportlocations[airportlocations.length] = new airportlocation("RSW","Fort Myers","Southwest Florida Reg","US");
		airportlocations[airportlocations.length] = new airportlocation("FSM","Fort Smith","Regional","US");
		airportlocations[airportlocations.length] = new airportlocation("FWA","Fort Wayne","Municipal/Baer Field","US");
		airportlocations[airportlocations.length] = new airportlocation("FFT","Frankfort","Capital City","US");
		airportlocations[airportlocations.length] = new airportlocation("FAT","Fresno","Fresno Air Terminal Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("GNV","Gainesville","Gainesville Regional","US");
		airportlocations[airportlocations.length] = new airportlocation("GCK","Garden City","Garden City Municipal Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("GCC","Gillette","Campbell County","US");
		airportlocations[airportlocations.length] = new airportlocation("GCN","Grand Canyon, National Park","National Park","US");
		airportlocations[airportlocations.length] = new airportlocation("FLG","Grand Canyon, Pulliam Field","Pulliam Field","US");
		airportlocations[airportlocations.length] = new airportlocation("GFK","Grand Forks","Grand Forks","US");
		airportlocations[airportlocations.length] = new airportlocation("GRI","Grand Island","Grand Island","US");
		airportlocations[airportlocations.length] = new airportlocation("GJT","Grand Junction","Walker Field","US");
		airportlocations[airportlocations.length] = new airportlocation("GRR","Grand Rapids, Kent County Intl","Kent County Intl","US");
		airportlocations[airportlocations.length] = new airportlocation("GTF","Great Falls","International","US");
		airportlocations[airportlocations.length] = new airportlocation("GRB","Green Bay","Austin-straubel Field","US");
		airportlocations[airportlocations.length] = new airportlocation("GSP","Greenville,  Spartanbur Int'l Airport","Greenville Spartanbur Int'l Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("GVT","Greenville, Majors Field","Majors Field","US");
		airportlocations[airportlocations.length] = new airportlocation("PGV","Greenville, Pitt-Greenville","Pitt-Greenville","US");
		airportlocations[airportlocations.length] = new airportlocation("GPT","Gulfport","Gulfport-Biloxi International","US");
		airportlocations[airportlocations.length] = new airportlocation("GUC","Gunnison","Gunnison","US");
		airportlocations[airportlocations.length] = new airportlocation("GST","Gustavus","Gustavus Arpt","US");
		airportlocations[airportlocations.length] = new airportlocation("HNM","Hana","Hana","US");
		airportlocations[airportlocations.length] = new airportlocation("CMX","Hancock","Houghton County","US");
		airportlocations[airportlocations.length] = new airportlocation("HRL","Harlingen","Valley International","US");
		airportlocations[airportlocations.length] = new airportlocation("MDT","Harrisburg","Harrisburg Intl","US");
		airportlocations[airportlocations.length] = new airportlocation("HDN","Hayden","Yampa Valley","US");
		airportlocations[airportlocations.length] = new airportlocation("HYS","Hays","Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("HLN","Helena","Helena","US");
		airportlocations[airportlocations.length] = new airportlocation("GSO","High Point","Piedmont Triad Intl","US");
		airportlocations[airportlocations.length] = new airportlocation("ITO","Hilo","Hilo International","US");
		airportlocations[airportlocations.length] = new airportlocation("HHH","Hilton Head","Hilton Head","US");
		airportlocations[airportlocations.length] = new airportlocation("HOM","Homer","Homer","US");
		airportlocations[airportlocations.length] = new airportlocation("HNL","Honolulu","Honolulu International","US");
		airportlocations[airportlocations.length] = new airportlocation("MKK","Hoolehua","Molokai","US");
		airportlocations[airportlocations.length] = new airportlocation("HOT","Hot Springs","Memorial Field","US");
		airportlocations[airportlocations.length] = new airportlocation("HOU","Houston","William P Hobby","US");
		airportlocations[airportlocations.length] = new airportlocation("HTS","Huntington","Tri-State/Milton","US");
		airportlocations[airportlocations.length] = new airportlocation("HSV","Huntsville","Huntsville International - Carl T. Jones Field Air","US");
		airportlocations[airportlocations.length] = new airportlocation("HYA","Hyannis","Barnstable","US");
		airportlocations[airportlocations.length] = new airportlocation("IDA","Idaho Falls","Fanning Field","US");
		airportlocations[airportlocations.length] = new airportlocation("IND","Indianapolis","Indianapolis International","US");
		airportlocations[airportlocations.length] = new airportlocation("INL","International Falls","Falls Intl","US");
		airportlocations[airportlocations.length] = new airportlocation("IYK","Inyokern","Kern County","US");
		airportlocations[airportlocations.length] = new airportlocation("ISP","Islip","Long Island Mac Arthur","US");
		airportlocations[airportlocations.length] = new airportlocation("ITH","Ithaca","Tompkins County","US");
		airportlocations[airportlocations.length] = new airportlocation("JAC","Jackson, Jackson Hole","Jackson Hole","US");
		airportlocations[airportlocations.length] = new airportlocation("JAN","Jackson, Jackson-evers","Jackson-evers","US");
		airportlocations[airportlocations.length] = new airportlocation("JAX","Jacksonville","Jacksonville,","US");
		airportlocations[airportlocations.length] = new airportlocation("JHW","Jamestown","Jamestown","US");
		airportlocations[airportlocations.length] = new airportlocation("JST","Johnstown","Cambria County","US");
		airportlocations[airportlocations.length] = new airportlocation("JLN","Joplin","Joplin","US");
		airportlocations[airportlocations.length] = new airportlocation("JNU","Juneau","Boundary Bay","US");
		airportlocations[airportlocations.length] = new airportlocation("AZO","Kalamazoo","Kalamazoo/Battle Creek Intl","US");
		airportlocations[airportlocations.length] = new airportlocation("FCA","Kalispell","Glacier Park International","US");
		airportlocations[airportlocations.length] = new airportlocation("MCI","Kansas City","Kansas City International Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("LIH","Kauai Island","Lihue","US");
		airportlocations[airportlocations.length] = new airportlocation("EAR","Kearney","Kearney","US");
		airportlocations[airportlocations.length] = new airportlocation("ENA","Kenai","Kenai","US");
		airportlocations[airportlocations.length] = new airportlocation("KTN","Ketchikan","International","US");
		airportlocations[airportlocations.length] = new airportlocation("EYW","Key West","International","US");
		airportlocations[airportlocations.length] = new airportlocation("ILE","Killeen","Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("AKN","King Salmon","King Salmon","US");
		airportlocations[airportlocations.length] = new airportlocation("IRK","Kirksville","Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("LMT","Klamath Falls","Kingsley Field","US");
		airportlocations[airportlocations.length] = new airportlocation("TYS","Knoxville","Mc Ghee Tyson","US");
		airportlocations[airportlocations.length] = new airportlocation("ADQ","Kodiak","Kodiak Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("KOA","Kona","Kona International Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("OTZ","Kotzebue","Kotzebue","US");
		airportlocations[airportlocations.length] = new airportlocation("LSE","La Crosse","Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("JHM","Lahaina","Kapalua","US");
		airportlocations[airportlocations.length] = new airportlocation("LCH","Lake Charles","Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("LNY","Lanai City","Lanai City","US");
		airportlocations[airportlocations.length] = new airportlocation("LNS","Lancaster","Lancaster","US");
		airportlocations[airportlocations.length] = new airportlocation("LAN","Lansing","Capital City","US");
		airportlocations[airportlocations.length] = new airportlocation("LAR","Laramie","General Brees Field","US");
		airportlocations[airportlocations.length] = new airportlocation("LRD","Laredo","International","US");
		airportlocations[airportlocations.length] = new airportlocation("LAS","Las Vegas","Mc Carran Intl","US");
		airportlocations[airportlocations.length] = new airportlocation("LAW","Lawton","Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("LEE","Leesburg","Leesburg","US");
		airportlocations[airportlocations.length] = new airportlocation("LWB","Lewisburg","Greenbrier Valley","US");
		airportlocations[airportlocations.length] = new airportlocation("LWS","Lewiston","Nez Perce County Rgnl","US");
		airportlocations[airportlocations.length] = new airportlocation("LEX","Lexington","Blue Grass","US");
		airportlocations[airportlocations.length] = new airportlocation("LBL","Liberal","Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("LNK","Lincoln","Lincoln","US");
		airportlocations[airportlocations.length] = new airportlocation("LIT","Little Rock","Regional Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("LGB","Long Beach","Long Beach Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("LAX","Los Angeles","Los Angeles International","US");
		airportlocations[airportlocations.length] = new airportlocation("SDF","Louisville, International","Louisville International (Standiford Field)","US");
		airportlocations[airportlocations.length] = new airportlocation("LMS","Louisville, Winston County","Winston County","US");
		airportlocations[airportlocations.length] = new airportlocation("LBB","Lubbock","International","US");
		airportlocations[airportlocations.length] = new airportlocation("LYH","Lynchburg","Preston-Glenn Field","US");
		airportlocations[airportlocations.length] = new airportlocation("LYO","Lyons","Rice County Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("MCN","Macon","Lewis B Wilson","US");
		airportlocations[airportlocations.length] = new airportlocation("MSN","Madison","Dane County Regional","US");
		airportlocations[airportlocations.length] = new airportlocation("MHT","Manchester","Manchester","US");
		airportlocations[airportlocations.length] = new airportlocation("MHK","Manhattan","Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("MXA","Manila","Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("MWA","Marion","Williamson County","US");
		airportlocations[airportlocations.length] = new airportlocation("MQT","Marquette","Sawyer International","US");
		airportlocations[airportlocations.length] = new airportlocation("MVY","Martha's Vineyard","Martha's Vineyard","US");
		airportlocations[airportlocations.length] = new airportlocation("MCW","Mason City","Mason City","US");
		airportlocations[airportlocations.length] = new airportlocation("OGG","Maui","Kahului","US");
		airportlocations[airportlocations.length] = new airportlocation("MFE","Mc Allen","Mc Allen Miller International","US");
		airportlocations[airportlocations.length] = new airportlocation("MCG","Mcgrath","Mcgrath","US");
		airportlocations[airportlocations.length] = new airportlocation("MFR","Medford","Medford Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("MLB","Melbourne","Melbourne International Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("MEM","Memphis","Memphis International","US");
		airportlocations[airportlocations.length] = new airportlocation("MCE","Merced","Merced Municipal Arpt","US");
		airportlocations[airportlocations.length] = new airportlocation("MEI","Meridian","Key Field","US");
		airportlocations[airportlocations.length] = new airportlocation("MIA","Miami","Miami International Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("MAF","Midland","Midland International","US");
		airportlocations[airportlocations.length] = new airportlocation("MKE","Milwaukee","General Mitchell International","US");
		airportlocations[airportlocations.length] = new airportlocation("MSP","Minneapolis","Minneapolis - St. Paul Intl","US");
		airportlocations[airportlocations.length] = new airportlocation("MOT","Minot","International","US");
		airportlocations[airportlocations.length] = new airportlocation("MSO","Missoula","Missoula International","US");
		airportlocations[airportlocations.length] = new airportlocation("MOD","Modesto","Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("MLI","Moline","Quad-City","US");
		airportlocations[airportlocations.length] = new airportlocation("MLU","Monroe","Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("MRY","Monterey","Monterey Peninsula","US");
		airportlocations[airportlocations.length] = new airportlocation("MVE","Montevideo","Montevideo-Chippewa","US");
		airportlocations[airportlocations.length] = new airportlocation("MGM","Montgomery","Dannelly Fld","US");
		airportlocations[airportlocations.length] = new airportlocation("MTJ","Montrose","Montrose Regional Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("MGW","Morgantown","Morgantown","US");
		airportlocations[airportlocations.length] = new airportlocation("MYR","Myrtle Beach","Myrtle Beach Afb","US");
		airportlocations[airportlocations.length] = new airportlocation("ACK","Nantucket","Nantucket Memorial","US");
		airportlocations[airportlocations.length] = new airportlocation("APF","Naples","Naples","US");
		airportlocations[airportlocations.length] = new airportlocation("BNA","Nashville","Nashville International","US");
		airportlocations[airportlocations.length] = new airportlocation("EWN","New Bern","Simmons Nott","US");
		airportlocations[airportlocations.length] = new airportlocation("HVN","New Haven","New Haven","US");
		airportlocations[airportlocations.length] = new airportlocation("LFT","New Iberia","Lafayette Regional","US");
		airportlocations[airportlocations.length] = new airportlocation("MSY","New Orleans","Louis Armstrong New Orléans International Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("NYC","New York","Metropolitan Area","US");
		airportlocations[airportlocations.length] = new airportlocation("JFK","New York, John F Kennedy Intl","John F Kennedy Intl","US");
		airportlocations[airportlocations.length] = new airportlocation("LGA","New York, La Guardia","La Guardia","US");
		airportlocations[airportlocations.length] = new airportlocation("EWR","Newark","Newark Liberty International","US");
		airportlocations[airportlocations.length] = new airportlocation("SWF","Newburgh","Stewart","US");
		airportlocations[airportlocations.length] = new airportlocation("PHF","Newport News","Newport News/williamsb","US");
		airportlocations[airportlocations.length] = new airportlocation("OME","Nome","Nome","US");
		airportlocations[airportlocations.length] = new airportlocation("ORF","Norfolk, International","Norfolk International Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("OFK","Norfolk, Stefan Field","Stefan Field","US");
		airportlocations[airportlocations.length] = new airportlocation("OTH","North Bend","North Bend","US");
		airportlocations[airportlocations.length] = new airportlocation("OAK","Oakland","Oakland International Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("OKC","Oklahoma City","Will Rogers World Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("OMA","Omaha","Eppley Airfield","US");
		airportlocations[airportlocations.length] = new airportlocation("ONT","Ontario, International","Ontario International","US");
		airportlocations[airportlocations.length] = new airportlocation("SNA","Orange County","John Wayne","US");
		airportlocations[airportlocations.length] = new airportlocation("MCO","Orlando","Orlando International","US");
		airportlocations[airportlocations.length] = new airportlocation("PAH","Paducah","Barkley Regional","US");
		airportlocations[airportlocations.length] = new airportlocation("PSP","Palm Springs","Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("PFN","Panama City","Bay County","US");
		airportlocations[airportlocations.length] = new airportlocation("PKB","Parkersburg","Wood County","US");
		airportlocations[airportlocations.length] = new airportlocation("PSC","Pasco","Tri-cities","US");
		airportlocations[airportlocations.length] = new airportlocation("PLN","Pellston","Emmet County","US");
		airportlocations[airportlocations.length] = new airportlocation("PDT","Pendleton","Pendleton","US");
		airportlocations[airportlocations.length] = new airportlocation("PNS","Pensacola","Regional","US");
		airportlocations[airportlocations.length] = new airportlocation("PIA","Peoria","Greater Peoria","US");
		airportlocations[airportlocations.length] = new airportlocation("PSG","Petersburg","Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("PHL","Philadelphia","Philadelphia International","US");
		airportlocations[airportlocations.length] = new airportlocation("PHX","Phoenix","Sky Harbor Intl","US");
		airportlocations[airportlocations.length] = new airportlocation("PTS","Pittsburg","Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("PIT","Pittsburgh","Pittsburgh International Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("PIH","Pocatello","Pocatello","US");
		airportlocations[airportlocations.length] = new airportlocation("PDX","Portland","Portland International","US");
		airportlocations[airportlocations.length] = new airportlocation("PWM","Portland","Intl Jetport","US");
		airportlocations[airportlocations.length] = new airportlocation("PQI","Presque Isle","Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("PVD","Providence","T. F. Green Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("PVC","Provincetown","Provincetown","US");
		airportlocations[airportlocations.length] = new airportlocation("PUW","Pullman","Pullman-Moscow Regional Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("UIN","Quincy","Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("RDU","Raleigh/Durham","Raleigh-Durham International Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("RAP","Rapid City","Regional","US");
		airportlocations[airportlocations.length] = new airportlocation("RDD","Redding","Redding","US");
		airportlocations[airportlocations.length] = new airportlocation("RDM","Redmond","Roberts Field","US");
		airportlocations[airportlocations.length] = new airportlocation("RNO","Reno","Reno-Tahoe International Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("RHI","Rhinelander","Oneida County","US");
		airportlocations[airportlocations.length] = new airportlocation("RIC","Richmond","Richmond International Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("RIW","Riverton","Riverton","US");
		airportlocations[airportlocations.length] = new airportlocation("ROA","Roanoke","Roanoke Regional Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("ROC","Rochester, Greater Rochester International","Greater Rochester International","US");
		airportlocations[airportlocations.length] = new airportlocation("RST","Rochester, International","International","US");
		airportlocations[airportlocations.length] = new airportlocation("RFD","Rockford","Greater Rockford Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("RKD","Rockland","Knox County Regional","US");
		airportlocations[airportlocations.length] = new airportlocation("ROW","Roswell","Industrial","US");
		airportlocations[airportlocations.length] = new airportlocation("RUT","Rutland","Rutland","US");
		airportlocations[airportlocations.length] = new airportlocation("SMF","Sacramento","Sacramento International","US");
		airportlocations[airportlocations.length] = new airportlocation("MBS","Saginaw","MBS International Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("STC","Saint Cloud","Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("SGU","Saint George","Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("SLN","Salina","Salina","US");
		airportlocations[airportlocations.length] = new airportlocation("SBY","Salisbury-Ocean City","Wicomico Regional","US");
		airportlocations[airportlocations.length] = new airportlocation("SLC","Salt Lake City","Salt Lake City International","US");
		airportlocations[airportlocations.length] = new airportlocation("SJT","San Angelo","Mathis Fld","US");
		airportlocations[airportlocations.length] = new airportlocation("SAT","San Antonio","San Antonio International","US");
		airportlocations[airportlocations.length] = new airportlocation("CLD","San Diego, Carlsbad","Carlsbad","US");
		airportlocations[airportlocations.length] = new airportlocation("SAN","San Diego, Lindberg Fld S. Diego","Lindberg Fld S. Diego","US");
		airportlocations[airportlocations.length] = new airportlocation("SFO","San Francisco","San Francisco International","US");
		airportlocations[airportlocations.length] = new airportlocation("SJC","San Jose","Mineta San Jose International Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("WSJ","San Juan","San Juan SPB","US");
		airportlocations[airportlocations.length] = new airportlocation("SBP","San Luis Obispo","San Luis County Regional Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("SBA","Santa Barbara","Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("SAF","Santa Fe","Santa Fe","US");
		airportlocations[airportlocations.length] = new airportlocation("SMX","Santa Maria","Public","US");
		airportlocations[airportlocations.length] = new airportlocation("STS","Santa Rosa","Sonoma County","US");
		airportlocations[airportlocations.length] = new airportlocation("SRQ","Sarasota","Sarasota-Bradenton International Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("SAV","Savannah","Savannah/Hilton Head","US");
		airportlocations[airportlocations.length] = new airportlocation("SEA","Seattle","Seattle-Tacoma International","US");
		airportlocations[airportlocations.length] = new airportlocation("SHR","Sheridan","Sheridan","US");
		airportlocations[airportlocations.length] = new airportlocation("SHV","Shreveport","Regional","US");
		airportlocations[airportlocations.length] = new airportlocation("SUX","Sioux City","Sioux Gateway","US");
		airportlocations[airportlocations.length] = new airportlocation("FSD","Sioux Falls","Joe Foss Field Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("SIT","Sitka","Sitka","US");
		airportlocations[airportlocations.length] = new airportlocation("SBN","South Bend","South Bend Regional","US");
		airportlocations[airportlocations.length] = new airportlocation("GEG","Spokane","International","US");
		airportlocations[airportlocations.length] = new airportlocation("SGF","Springfield","Springfield-Branson Rg","US");
		airportlocations[airportlocations.length] = new airportlocation("SPI","Springfield","Capital","US");
		airportlocations[airportlocations.length] = new airportlocation("STL","St Louis","Lambert-st Louis Intl","US");
		airportlocations[airportlocations.length] = new airportlocation("SCE","State College","University Park","US");
		airportlocations[airportlocations.length] = new airportlocation("SUN","Sun Valley","Sun Valley","US");
		airportlocations[airportlocations.length] = new airportlocation("SYR","Syracuse","Syracuse Hancock International Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("TLH","Tallahassee","Tallahassee Regional Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("TPA","Tampa","Tampa International","US");
		airportlocations[airportlocations.length] = new airportlocation("TEX","Telluride","Telluride","US");
		airportlocations[airportlocations.length] = new airportlocation("TXK","Texarkana","Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("TVF","Thief River Falls","Regional","US");
		airportlocations[airportlocations.length] = new airportlocation("TOL","Toledo","Toledo Express","US");
		airportlocations[airportlocations.length] = new airportlocation("TVC","Traverse City","Cherry Capital Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("TUS","Tucson","Tucson International Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("TUL","Tulsa","Tulsa International","US");
		airportlocations[airportlocations.length] = new airportlocation("TUP","Tupelo","Lemons Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("TWF","Twin Falls","Joslin Field - Magic Valley Regional","US");
		airportlocations[airportlocations.length] = new airportlocation("TYR","Tyler","Tyler Pounds Regional Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("EGE","Vail/Eagle","Eagle County","US");
		airportlocations[airportlocations.length] = new airportlocation("VDZ","Valdez","Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("VPS","Valparaiso","Ft. Walton Beach","US");
		airportlocations[airportlocations.length] = new airportlocation("OXR","Ventura","Ventura","US");
		airportlocations[airportlocations.length] = new airportlocation("ACT","Waco","Municipal","US");
		airportlocations[airportlocations.length] = new airportlocation("ALW","Walla Walla","Walla Walla","US");
		airportlocations[airportlocations.length] = new airportlocation("WAS","Washington","Metropolitan Area","US");
		airportlocations[airportlocations.length] = new airportlocation("DCA","Washington DC","Ronald Reagan National","US");
		airportlocations[airportlocations.length] = new airportlocation("ALO","Waterloo","Waterloo","US");
		airportlocations[airportlocations.length] = new airportlocation("CWA","Wausau","Central Wisconsin","US");
		airportlocations[airportlocations.length] = new airportlocation("EAT","Wenatchee","Pangborn Field","US");
		airportlocations[airportlocations.length] = new airportlocation("PBI","West Palm Beach","Palm Beach International","US");
		airportlocations[airportlocations.length] = new airportlocation("WYS","West Yellowstone","Yellowstone","US");
		airportlocations[airportlocations.length] = new airportlocation("HPN","White Plains","Westchester County Apt","US");
		airportlocations[airportlocations.length] = new airportlocation("LEB","White River","White River","US");
		airportlocations[airportlocations.length] = new airportlocation("ICT","Wichita","Mid-Continent","US");
		airportlocations[airportlocations.length] = new airportlocation("AVP","Wilkes-Barre/Scranton","Wilkes-Barre/Scranton International Airport","US");
		airportlocations[airportlocations.length] = new airportlocation("IPT","Williamsport","Lycoming County","US");
		airportlocations[airportlocations.length] = new airportlocation("ILN","Wilmington, Clinton Field","Clinton Field","US");
		airportlocations[airportlocations.length] = new airportlocation("ILG","Wilmington, Greater Wilmington","Greater Wilmington","US");
		airportlocations[airportlocations.length] = new airportlocation("ILM","Wilmington, International","Wilmington International","US");
		airportlocations[airportlocations.length] = new airportlocation("BDL","Windsor Locks","Bradley International","US");
		airportlocations[airportlocations.length] = new airportlocation("WRG","Wrangell","Wrangell SPB","US");
		airportlocations[airportlocations.length] = new airportlocation("YKM","Yakima","Yakima Air Terminal","US");
		airportlocations[airportlocations.length] = new airportlocation("YUM","Yuma","International","US");
		airportlocations[airportlocations.length] = new airportlocation("PDP","Maldonado","Capitan Corbeta CA Curbelo International Airport","UY");
		airportlocations[airportlocations.length] = new airportlocation("MVD","Montevideo","Carrasco International","UY");
		airportlocations[airportlocations.length] = new airportlocation("STT","Charlotte Amalie, St Thomas","Cyril E King Airport","VI");
		airportlocations[airportlocations.length] = new airportlocation("STX","St Croix Island","Alex Hamilton","VI");
		airportlocations[airportlocations.length] = new airportlocation("BHK","Bukhara","Bukhara","UZ");
		airportlocations[airportlocations.length] = new airportlocation("TAS","Tashkent","Yuzhny","UZ");
		airportlocations[airportlocations.length] = new airportlocation("UGC","Urgench","Urgench","UZ");
		airportlocations[airportlocations.length] = new airportlocation("CCV","Craig Cove","Craig Cove","VU");
		airportlocations[airportlocations.length] = new airportlocation("SON","Espiritu Santo","Pekoa","VU");
		airportlocations[airportlocations.length] = new airportlocation("LPM","Lamap","Lamap","VU");
		airportlocations[airportlocations.length] = new airportlocation("LNE","Lonorore","Lonorore","VU");
		airportlocations[airportlocations.length] = new airportlocation("MWF","Maewo","Maewo","VU");
		airportlocations[airportlocations.length] = new airportlocation("NUS","Norsup","Norsup","VU");
		airportlocations[airportlocations.length] = new airportlocation("VLI","Port Vila","Bauerfield","VU");
		airportlocations[airportlocations.length] = new airportlocation("SLH","Sola","Sola","VU");
		airportlocations[airportlocations.length] = new airportlocation("TAH","Tanna","Tanna","VU");
		airportlocations[airportlocations.length] = new airportlocation("VLS","Valesdir","Valesdir","VU");
		airportlocations[airportlocations.length] = new airportlocation("WLH","Walaha","Walaha","VU");
		airportlocations[airportlocations.length] = new airportlocation("BRM","Barquisimeto","Barquisimeto","VE");
		airportlocations[airportlocations.length] = new airportlocation("CCS","Caracas","Simon Bolivar International Airport","VE");
		airportlocations[airportlocations.length] = new airportlocation("MAR","Maracaibo","La Chinita","VE");
		airportlocations[airportlocations.length] = new airportlocation("MRD","Merida","A Carnevalli","VE");
		airportlocations[airportlocations.length] = new airportlocation("PMV","Porlamar","DelCaribe Gen S Marino","VE");
		airportlocations[airportlocations.length] = new airportlocation("PZO","Puerto Ordaz","Puerto Ordaz","VE");
		airportlocations[airportlocations.length] = new airportlocation("VLN","Valencia","Valencia","VE");
		airportlocations[airportlocations.length] = new airportlocation("BMV","Banmethuot","Phung-Duc","VN");
		airportlocations[airportlocations.length] = new airportlocation("VCS","Con Dao","Coong","VN");
		airportlocations[airportlocations.length] = new airportlocation("DAD","Da Nang","Da Nang","VN");
		airportlocations[airportlocations.length] = new airportlocation("DLI","Dalat","Lienkhang","VN");
		airportlocations[airportlocations.length] = new airportlocation("DIN","Dien Bien Phu","Dien Bien","VN");
		airportlocations[airportlocations.length] = new airportlocation("HPH","Haiphong","Catbi","VN");
		airportlocations[airportlocations.length] = new airportlocation("HAN","Hanoi","Noibai International","VN");
		airportlocations[airportlocations.length] = new airportlocation("SGN","Ho Chi Minh City","Tan Son Nhat International","VN");
		airportlocations[airportlocations.length] = new airportlocation("HUI","Hue","Phu Bai","VN");
		airportlocations[airportlocations.length] = new airportlocation("CXR","Nha Trang, Cam Ranh","Cam Ranh","VN");
		airportlocations[airportlocations.length] = new airportlocation("NHA","Nha Trang, Nha Trang","Nha Trang","VN");
		airportlocations[airportlocations.length] = new airportlocation("PQC","Phu Quoc","Duong Dong","VN");
		airportlocations[airportlocations.length] = new airportlocation("PXU","Pleiku","Pleiku","VN");
		airportlocations[airportlocations.length] = new airportlocation("UIH","Qui Nhon","Qui Nhon","VN");
		airportlocations[airportlocations.length] = new airportlocation("VKG","Rach Gia","Rach Gia","VN");
		airportlocations[airportlocations.length] = new airportlocation("TBB","Tuy Hoa","Tuy Hoa","VN");
		airportlocations[airportlocations.length] = new airportlocation("VII","Vinh City","Vinh City","VN");
		airportlocations[airportlocations.length] = new airportlocation("WLS","Wallis Island","Wallis Island","WF");
		airportlocations[airportlocations.length] = new airportlocation("ADE","Aden","International","YE");
		airportlocations[airportlocations.length] = new airportlocation("SAH","Sanaa","El Rahaba Airport (sanaa Intenational)","YE");
		airportlocations[airportlocations.length] = new airportlocation("GXF","Seiyun","Seiyun","YE");
		airportlocations[airportlocations.length] = new airportlocation("SCT","Socotra","Socotra","YE");
		airportlocations[airportlocations.length] = new airportlocation("FBM","Lubumbashi","Luano","ZR");
		airportlocations[airportlocations.length] = new airportlocation("LVI","Livingstone","Livingstone","ZM");
		airportlocations[airportlocations.length] = new airportlocation("LUN","Lusaka","Lusaka","ZM");
		airportlocations[airportlocations.length] = new airportlocation("NLA","Ndola","Ndola","ZM");
		airportlocations[airportlocations.length] = new airportlocation("BUQ","Bulawayo","Bulawayo","ZW");
		airportlocations[airportlocations.length] = new airportlocation("HRE","Harare","Harare","ZW");
		airportlocations[airportlocations.length] = new airportlocation("VFA","Victoria Falls","Victoria Falls","ZW");


