function country(country_name,country_value,language_name,language_value){
this.country = country_name;
this.country_value = country_value;
this.language = language_name;
this.language_value = language_value;
				}
				 countries=new Array(new country("AU",1,"EN",1),new country("CA",2,"EN",1),new country("CA",2,"FR",3),new country("CN",3,"ZH",11),new country("DK",4,"DA",15),new country("FI",5,"FI",26),new country("FR",6,"FR",3),new country("DE",7,"DE",4),new country("HK",8,"EN",1),new country("HK",8,"ZH",7),new country("IT",10,"IT",5),new country("JP",11,"JA",6),new country("NL",12,"NL",13),new country("NO",13,"NO",14),new country("SE",14,"SV",12),new country("SG",15,"EN",1),new country("CH",16,"FR",3),new country("CH",16,"DE",4),new country("CH",16,"IT",5),new country("TW",17,"ZH",7),new country("GB",18,"EN",1),new country("US",19,"EN",1),new country("MX",20,"ES",20),new country("ES",21,"ES",2),new country("BE",22,"FR",3),new country("BE",22,"NL",13),new country("PT",23,"PT",21),new country("AT",24,"DE",4),new country("ZA",26,"EN",1),new country("BR",29,"PT",17),new country("CZ",30,"CS",24),new country("HU",31,"HU",9),new country("PL",32,"PL",34),new country("IE",33,"EN",1),new country("MY",34,"EN",1),new country("IN",35,"EN",1),new country("BG",43,"BG",23),new country("HR",46,"HR",36),new country("EE",51,"ET",25),new country("GR",52,"EL",35),new country("LV",60,"LV",27),new country("LT",63,"LT",28),new country("NZ",66,"EN",1),new country("PA",69,"EN",1),new country("RO",75,"RO",29),new country("RU",76,"RU",16),new country("SI",78,"SL",31),new country("KR",79,"KO",19),new country("TR",85,"TR",22),new country("UA",87,"RU",16),new country("UA",87,"UK",33),new country("SK",98,"SK",30),new country("CG",104,"SR",32),new country("SU",107,"EN",1),new country("GY",108,"EN",1),new country("ROEU",1009,"EN",1),new country("ROAP",1010,"EN",1),new country("ROAM",1011,"ES",20));
