var FilterPopupData = {
  title: 'Important Notice to Investors'
  ,submitPrompt: 'Submit'
  ,cancelPrompt: 'Cancel'
  ,closePrompt: 'Close'
  ,countryPrompt: '(Please select a country.)'
  ,countries: {AF: "Afghanistan", AL: "Albania", DZ: "Algeria", AD: "Andorra", AO: "Angola", AG: "Antigua And Barbuda", AR: "Argentina", AM: "Armenia", AU: "Australia", AT: "Austria", AZ: "Azerbaijan", BH: "Bahrain", BD: "Bangladesh", BB: "Barbados", BY: "Belarus", BE: "Belgium", BZ: "Belize", BJ: "Benin", BT: "Bhutan", BO: "Bolivia", BA: "Bosnia And Herzegovina", BW: "Botswana", BR: "Brazil", BN: "Brunei", BG: "Bulgaria", BF: "Burkina Faso", BM: "Burma", BI: "Burundi", KH: "Cambodia", CM: "Cameroon", CA: "Canada", CV: "Cape Verde", CF: "Central African Republic", TD: "Chad", CL: "Chile", CN: "China", CO: "Colombia", CG: "Congo", CR: "Costa Rica", CD: "Cote d'Ivoire", HR: "Croatia", CU: "Cuba", CY: "Cyprus", CZ: "Czech Republic", DK: "Denmark", DJ: "Djibouti", DM: "Dominica", DO: "Dominican Republic", ET: "East Timor", EC: "Ecuador", EG: "Egypt", SV: "El Salvador", GQ: "Equatorial Guinea", ER: "Eritrea", EE: "Estonia", ET: "Ethiopia", FJ: "Fiji", FI: "Finland", FR: "France", GA: "Gabon", GM: "Gambia", GE: "Georgia", DE: "Germany", GH: "Ghana", GR: "Greece", GD: "Grenada", GT: "Guatemala", GN: "Guinea", GW: "Guinea-Bissau", GY: "Guyana", HT: "Haiti", HN: "Honduras", HK: "Hong Kong", HU: "Hungary", IS: "Iceland", IN: "India", ID: "Indonesia", IR: "Iran", IQ: "Iraq", IE: "Ireland", IL: "Israel", IT: "Italy", JM: "Jamaica", JP: "Japan", JO: "Jordan", KZ: "Kazakhstan", KE: "Kenya", KI: "Kiribati", KP: "North Korea", KR: "South Korea", KW: "Kuwait", KG: "Kyrgyzstan", LA: "Laos", LV: "Latvia", LB: "Lebanon", LS: "Lesotho", LR: "Liberia", LY: "Libya", LI: "Liechtenstein", LT: "Lithuania", LU: "Luxembourg", MK: "Macedonia", MG: "Madagascar", MW: "Malawi", MY: "Malaysia", MV: "Maldives", ML: "Mali", MT: "Malta", MH: "Marshall Islands", MR: "Mauritania", MU: "Mauritius", MX: "Mexico", FM: "Micronesia", MD: "Moldova", MC: "Monaco", MN: "Mongolia", ME: "Montenegro", MA: "Morocco", MZ: "Mozambique", NA: "Namibia", NR: "Nauru", NP: "Nepal", NL: "Netherlands", NZ: "New Zealand", NI: "Nicaragua", NE: "Niger", NG: "Nigeria", NO: "Norway", OM: "Oman", PK: "Pakistan", PW: "Palau", PA: "Panama", PG: "Papua New Guinea", PY: "Paraguay", PE: "Peru", PH: "Philippines", PL: "Poland", PT: "Portugal", QA: "Qatar", RO: "Romania", RU: "Russia", RW: "Rwanda", KN: "Saint Kitts And Nevis", LC: "Saint Lucia", VC: "Saint Vincent And The Grenadines", WS: "Samoa", SM: "San Marino", ST: "Sao Tome And Principe", SA: "Saudi Arabia", SN: "Senegal", RS: "Serbia", SC: "Seychelles", SL: "Sierra Leone", SG: "Singapore", SK: "Slovakia", SI: "Slovenia", SB: "Solomon Islands", SO: "Somalia", ZA: "South Africa", ES: "Spain", LK: "Sri Lanka", SD: "Sudan", SR: "Suriname", SZ: "Swaziland", SE: "Sweden", CH: "Switzerland", SY: "Syria", TJ: "Tajikistan", TZ: "Tanzania", TH: "Thailand", TG: "Togo", TO: "Tonga", TT: "Trinidad And Tobago", TN: "Tunisia", TR: "Turkey", TM: "Turkmenistan", TV: "Tuvalu", UG: "Uganda", UA: "Ukraine", AE: "United Arab Emirates", GB: "United Kingdom", US: "United States of America", UY: "Uruguay", UZ: "Uzbekistan", VU: "Vanuatu", VT: "Vatican City", VE: "Venezuela", VN: "Vietnam", EH: "Western Sahara", YE: "Yemen", ZM: "Zambia", ZW: "Zimbabwe"}
  ,dialog: {
    html: '<table style="height:300px">'
          + '<tr><td>Country:</td><td>SELECT_COUNTRIES</td></tr>'
          + '<tr><td>City:</td><td><input name="city" type="text"/></td></tr>'
          + '<tr><td>Postcode:</td><td><input name="postcode" type="text"/></td></tr>'
          + '<tr><td colspan="2">I confirm that I am currently not a United States resident nor am I physically located in the United States.'
          + '<center><input type="radio" name="confirm" value="yes"/>Yes '
          + '<input type="radio" name="confirm" value="no"/>No</center></td></tr>'
          + '</table>'
          + '* The information you provide will only be used for validation purposes and will not be provided to third parties.'
    ,width: 400
    ,validate: function(country, city, postcode, confirm) {
      var valid = true;
      valid = valid && country != "" && country != "US";
      valid = valid && city.match(/[a-zA-Z ]/);
      valid = valid && postcode.match(/[0-9a-zA-Z \-]/);
      valid = valid && confirm == 'yes';
      return valid;
    }
  }
  ,fail: {
    html: 'You have not made the required representations.  Therefore, we are unfortunately not permitted to provide you with the information you have required.  The information provided on this website may not be disseminated in the United States of America or to U.S. persons, as defined in Regulation S under the U.S. Securities Act of 1933, as amended.'
  }
  ,disclaimer: {
    html: '<div style="height:350px">The information contained on the following web pages is not intended for United States residents or for persons who are physically located in the United States.  The securities may not be offered or sold in the United States of America absent registration or an exemption from registration under the U.S. Securities Act of 1933, as amended.  We do not intend to register the offering in the United States or conduct a public offering in the United States.  The information contained on the following web pages may not be distributed in or inside the United States.<br/><br/>'
          + 'The above legend is required by the securities laws of the United States.  Please confirm that you have read it and accept its terms.<br/><br/>'
          + 'I have read the above legend and accept its terms.<br/>'
          + '<center><input type="radio" name="confirm" value="yes">Yes'
          + '<input type="radio" name="confirm" value="no">No</center></div>'
  }
}

