// $Id: places.js,v 1.7 2007/07/24 14:32:37 clinton Exp $ 
// The Arrays created here correspond to the various location-based dropdowns
// on the websites.

// Each element in each array is itself an array - with two elements
// The 'text' and 'value' properties of the the <option> in the dropdown
// to be created. The order of array elements determines the order offered in the dropdown

// Please be VERY careful regarding the correct arrangement of quotes in this file
// Misplaced quotes may cause the website so cease functioning.

// originAirportArray lists the valid Origin Airports 
// Used on Flight-Inclusive Packages and Flight Only Dialogs
var originAirportArray = new Array (
  "('Cork','ORK')",
  "('Dublin','DUB')",
  "('Shannon','SNN')"  
);

// destAirportArray lists the valid Destination Airports 
// Used on Flight Only Dialog
var destAirportArray = new Array (
  "('Antalya','AYT')",
  "('Paris','CDG')",
  "('Edinburgh','EDI')",
  "('Rome','ROM')",
  "('Bergamo','BGY')",
  "('Moscow','MOW')",
  "('Cardiff','CWL')",
  "('Abu Dhabi','AUH')",
  "('Toulouse','TLS')",
  "('Hamburg','HAM')",
  "('Pisa','PSA')",
  "('Bratislava','BTS')",
  "('Vienna', 'VIE')"  
);

// destCCArray lists the valid Destination Countries 
// Used on Flight-Inclusive Packages
var destCCArray = new Array(
  "('Austria', 'AUS')",
  "('England', 'ENG')",
  "('Scotland','SCO')",
  "('Ireland','IRE')",
  "('Turkey',  'TUR')",
  "('France',  'FRA')",
  "('Hungry',  'HUN')",
  "('Czech Rep',  'CZE')",
  "('Italy',   'ITA')",
  "('UAE','AE')",
  "('Spain',  'SPA')",
  "('Slovakia', 'SVK')"
);
// countryArray lists the valid Destination Countries 
// Used on Accommodation Only
var countryArray = destCCArray;

// The various resortXXXArray's list the resorts for each country, for both 
// Accommodation Only and Flight-Inclusive holidays.
// The name of these arrays is 'resort' + countryCode + 'Array'
var resortAUSArray = new Array("('Vienna','VIE')");
var resortSVKArray = new Array("('Bratislava','BTS')");
var resortCZEArray = new Array("('Prague','PRG')");
var resortENGArray = new Array("('Any','')",
  "('Manchester','MCH')",
  "('Liverpool','LIV')",
  "('London','LON')",
  "('Sunderland','SND')"
);
var resortFRAArray = new Array ("('Any','')",
    "('Disney','DIS')",
    "('Paris','PAR')",
    "('Nice','NCE')",
    "('Cannes','CAN')",
    "('Montecarlo','MON')",
    "('ST Laurent Du Var','STL')"
);
var resortITAArray = new Array ("('Any','')",
    "('Pisa','PSA')",
    "('Tuscany Coast','TUC')",
    "('Bari','BRI')",
    "('Tuscany','TUS')",
    "('Milan','MIL')",
    "('Rome','ROM')",
    "('Florence','FLR')",
    "('Venice','vce')"
);
var resortSCOArray = new Array("('Glasgow','GLA')");
var resortTURArray = new Array ("('Any','')",
    "('Antalya','AYT')",
    "('Istanbul','IST')"
);
var resortSPAArray = new Array("('Malaga','AGP')",
    "('Barcelona','BCN')",
    "('Madrid','MAD')",
    "('Marbella','MAR')",
    "('Fuengirola','FUE')",
    "('Seville','SVQ')",
    "('Torremolinos','TRM')");;
var resortHUNArray = new Array("('Budapest','BUD')")
var resortCZEArray = new Array("('Prague','PRG')")
var resortAEArray = new Array("('Any','')",
    "('Abu Dhabi','AUH')",
    "('Dubai','DXB')");
var resortIREArray = new Array ("('Dublin','DUB')");

