1/* combined all protocol into this database */
2function gen_country_list(){
3	countrylist = new Array();
4	countrylist.push(["Others", ""]);
5	countrylist.push(["Australia", "AU"]);
6	countrylist.push(["Austria", "AT"]);
7	countrylist.push(["Bosnia and Herzegovina", "BA"]);
8	countrylist.push(["Brazil", "BR"]);
9	countrylist.push(["Brunei", "BN"]);
10	countrylist.push(["Bulgaria", "BG"]);
11	countrylist.push(["Canada", "CA"]);
12	countrylist.push(["China", "CN"]);
13	countrylist.push(["Czech", "CZ"]);
14	countrylist.push(["Denmark", "DK"]);
15	countrylist.push(["Dominican Republic", "DO"]);
16	countrylist.push(["Egypt", "EG"]);
17	countrylist.push(["Finland", "FI"]);
18	countrylist.push(["Germany", "DE"]);
19	countrylist.push(["Greece", "GR"]);
20	countrylist.push(["Hong Kong", "HK"]);
21	countrylist.push(["India", "IN"]);
22	countrylist.push(["Indonesia", "ID"]);
23	countrylist.push(["Israel", "IL"]);
24	countrylist.push(["Italy", "IT"]);
25	countrylist.push(["Japan", "JP"]);
26	countrylist.push(["Malaysia", "MY"]);
27	countrylist.push(["Netherlands", "NL"]);
28	countrylist.push(["New Zealand", "NZ"]);
29	countrylist.push(["Norway", "NO"]);
30	countrylist.push(["Philippines", "PH"]);
31	countrylist.push(["Poland", "PL"]);
32	countrylist.push(["Portugal", "PT"]);
33	countrylist.push(["Romania", "RO"]);
34	countrylist.push(["Russia", "RU"]);
35	countrylist.push(["Singapore", "SG"]);
36	countrylist.push(["Slovakia", "SK"]);
37	countrylist.push(["South Africa", "ZA"]);
38	countrylist.push(["Spain", "ES"]);
39	countrylist.push(["Sweden", "SE"]);
40	countrylist.push(["Taiwan", "TW"]);
41	countrylist.push(["Thailand", "TH"]);
42	countrylist.push(["Turkey", "TR"]);
43	countrylist.push(["Ukraine", "UA"]);
44	countrylist.push(["United Kingdom", "UK"]);
45	countrylist.push(["USA", "US"]);
46	countrylist.push(["Vietnam", "VN"]);
47
48	var got_country = 0;
49	free_options(document.form.modem_country);
50	document.form.modem_country.options.length = countrylist.length;
51	for(var i = 0; i < countrylist.length; i++){
52		document.form.modem_country.options[i] = new Option(countrylist[i][0], countrylist[i][1]);
53		if(countrylist[i][1] == country){
54			got_country = 1;
55			document.form.modem_country.options[i].selected = "1";
56		}
57	}
58
59	if(!got_country)
60		document.form.modem_country.options[0].selected = "1";
61}
62
63// 1:WCDMA  2:CMDA2000  3.TD-SCDMA  4.WiMAX
64function gen_list(){
65	var country = document.form.modem_country.value;
66
67	if(country == "AU"){
68		protolist = new Array("1", "1", "1", "1", "1", "1", "1", "1", "1", "1");
69		isplist = new Array("Telstra", "Optus", "3", "3 PrePaid", "Vodafone", "iburst", "Dodo", "Exetel", "Internode", "TPG");
70		apnlist = new Array("telstra.internet", "Internet", "3netaccess", "3services", "vfprepaymbb", "internet", "DODOLNS1", "exetel1", "splns333a1", "internet")
71		daillist = new Array("*99#", "*99#", "*99***1#", "*99***1#", "*99#", "*99***1#", "*99#", "*99***1#", "*99***1#", "*99***1#")
72		userlist = new Array("", "", "", "", "", "", "", "", "", "");
73		passlist = new Array("", "", "", "", "", "", "", "", "", "");
74	}
75	else if(country == "AT"){
76		protolist = new Array("1", "1", "1", "1", "1", "1", "1", "1");
77		isplist = new Array("T-Mobile", "Orange APN", "Mobilkom Austria (A1)", "3 Österreich", "Ge org", "Bob.at", "tele.ring", "yesss");
78		apnlist = new Array("gprsinternet", "web.one.at", "a1.net", "drei.at", "web", "bob.at", "WEB", "web.yesss.at");
79		daillist = new Array("*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#");
80		userlist = new Array("gprs", "web", "ppp@a1plus.at", "", "web@telering.at", "data@bob.at", "web@telering.at", "");
81		passlist = new Array("", "web", "ppp", "", "d2Vi", "ppp", "web", "");
82	}
83	else if(country == "BA"){
84		protolist = new Array("1");
85		isplist = new Array("T3");
86		apnlist = new Array("");
87		daillist = new Array("#777");
88		userlist = new Array("t3net");
89		passlist = new Array("t3net");
90	}
91	else if(country == "BR"){
92		protolist = new Array("1", "1", "1", "1");
93 		isplist = new Array("Vivo", "TIM", "Oi", "Claro BR");
94		apnlist = new Array("zap.vivo.com.br", "tim.br", "gprs.oi.com.br", "bandalarga.claro.com.br");
95		daillist = new Array("*99#", "*99#", "*99***1#", "*99***1#");
96		userlist = new Array("vivo", "tim", "oi", "claro");
97		passlist = new Array("vivo", "tim", "oi", "claro");
98	}
99	else if(country == "BN"){
100		protolist = new Array("1");
101		isplist = new Array("B-Mobile");
102		apnlist = new Array("dm.jplat.net");
103		daillist = new Array("*99***1#");
104		userlist = new Array("bmobile@u300");
105		passlist = new Array("bmobile");
106	}
107	else if(country == "BG"){
108		protolist = new Array("1", "1", "1");
109		isplist = new Array("GLOBUL", "M-Tel", "Vivacom");
110		apnlist = new Array("internet.globul.bg", "inet-gprs.mtel.bg", "internet.vivatel.bg");
111		daillist = new Array("359891000", "359881000", "359871000");
112		userlist = new Array("globul", "", "vivatel");
113		passlist = new Array("", "", "vivatel");
114	}
115	else if(country == "CA"){
116		protolist = new Array("1");
117		isplist = new Array("Rogers Wireless");
118		apnlist = new Array("internet.com");
119		daillist = new Array("*99***1#");
120		userlist = new Array("wapuser1");
121		passlist = new Array("wap");
122	}
123	else if(country == "CN"){
124		protolist = new Array("1", "3", "2");
125		isplist = new Array("China Unicom", "China Mobile", "China Telecom");
126		apnlist = new Array("3gnet", "cmnet", "ctnet");
127		daillist = new Array("*99#", "*99#", "#777");
128		userlist = new Array("", "net", "card");
129		passlist = new Array("", "net", "card");
130	}
131	else if(country == "CZ"){
132		protolist = new Array("1", "1", "1", "2");
133		isplist = new Array("T-Mobile", "O2", "Vodafone", "Ufon");
134		apnlist = new Array("internet.t-mobile.cz", "internet", "internet", "");
135		daillist = new Array("*99#", "*99#", "*99***1#", "#777");
136		userlist = new Array("gprs", "", "", "ufon");
137		passlist = new Array("gprs", "", "", "ufon");
138	}
139	else if(country == "DK"){
140		protolist = new Array("1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1");
141		isplist = new Array("3", "TDC", "Orange", "Telia", "Telenor", "Callme", "Onfone", "CBB", "Oister", "Bibob", "Happii mobil");
142		apnlist = new Array("data.tre.dk", "internet", "web.orange.dk", "www.internet.mtelia.dk", "Internet", ["Callme Internet&&websp", "Callme MMS&&mmssp"], ["Onfone GPRS&&internet.sp.dk", "Onfone MMS&&mms.sp.dk"], ["Telenor internet&&internet", "Telenor MMS&&Telenor"], ["Oister&&data.dk", "OisterMMS&&data.dk"], ["Bibob Internet&&internet.bibob.dk", "Bibob MMS&&mms.bibob.dk"], ["Happii Internet&&internet", "Happii MMS&&mms"]);
143		daillist = new Array("*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#");
144		userlist = new Array("", "", "", "", "", "", "", "", "", "", "");
145		passlist = new Array("", "", "", "", "", "", "", "", "", "", "");
146	}
147	else if(country == "DO"){
148		protolist = new Array("1");
149		isplist = new Array("Claro");
150		apnlist = new Array("internet.ideasclaro.com.do");
151		daillist = new Array("*99#");
152		userlist = new Array("");
153		passlist = new Array("");
154	}
155	else if(country == "EG"){
156		protolist = new Array("1", "1", "1");
157		isplist = new Array("Mobinil", "Vodafone", "Etisalat");
158		apnlist = new Array("mobinilweb", "internet.vodafone.net", "internet");
159		daillist = new Array("*99***1#", "*99***1#", "*99***1#");
160		userlist = new Array("", "internet", "");
161		passlist = new Array("", "internet", "");
162	}
163	else if(country == "FI"){
164		protolist = new Array("1", "1", "1", "1", "1", "1", "1", "1");
165		isplist = new Array("DNA", "Saunalahti", "Elisa", "Sonera", "AinaCom/Sonera", "AINA", "TDC/DNA", "Dicame");
166		apnlist = new Array("internet", "internet.saunalahti", "internet", "internet", "internet", "internet.aina.fi", "inet.tdc.fi", "internet.dicame.fi");
167		daillist = new Array("*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#");
168		userlist = new Array("", "", "", "", "", "", "", "");
169		passlist = new Array("", "", "", "", "", "", "", "");
170	}
171	else if(country == "DE"){
172		protolist = new Array("1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1");
173		isplist = new Array("Call & Surf via Funk LTE", "T-Mobile MagentaMobil", "T-Mobile Data Comfort", "T-Mobile Xtra Prepaid", "congstar", "congstar LTE", "klarmobile (0151)", "Callmobile", "ja!mobile", "Vodafone Vertragstarife", "Vodafone Websessions", "1&1 D-Netz", "klarmobile (0152)", "Bildmobil (auch RTL)", "Fyve Mobil", "otelo Smartphone", "otelo Datentarife", "Edeka Mobil", "BASE Prepaid", "1&1 E-Netz", "Simyo", "Blau", "Blau Tages-Surfflat", "Ay Yildiz", "Aldi Talk", "Aldi Talk Tages-Surfflat", "O2 Blue (Smartphone)", "O2 go mobil", "O2 Prepaid", "Fonic", "klarmobile (0176)", "Tschibo Prepaid", "Tschibo Vertrag", "Lidl Mobil", "Saturn Daten Tarif LTE", "Mediamarkt Datentarif LTE");
174		apnlist = new Array("internet.home", "internet.telekom", "internet.telekom", "internet.t-mobile", "internet.t-mobile", "internet.telekom", "internet.t-d1.de", "internet.t-mobile", "internet.t-mobile", "web.vodafone.de", "event.vodafone.de", "web.vodafone.de", "web.vodafone.de", "event.vodafone.de", "event.vodafone.de", "web.vodafone.de", "data.otelo.de", "data.access.de", "internet.eplus.de", "internet.eplus.de", "internet.eplus.de", "internet.eplus.de", "tagesflat.eplus.de", "internet.eplus.de", "internet.eplus.de", "tagesflat.eplus.de", "internet", "surfo2", "pinternet.interkom.de", "pinternet.interkom.de", "internet.mobilcom", "webmobil1", "surfmobil2", "pinternet.interkom.de", "surfo2", "surfo2");
175		daillist = new Array("*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#");
176		userlist = new Array("tmobile", "tmobile", "tmobile", "tmobile", "tmobile", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "simyo", "blau", "", "eplus", "eplus", "", "", "", "", "", "", "", "", "", "", "");
177		passlist = new Array("tm", "tm", "tm", "tm", "tm", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "simyo", "blau", "", "gprs", "gprs", "", "", "", "", "", "", "", "", "", "", "");
178	}
179	else if(country == "GR"){
180		protolist = new Array("1");
181		isplist = new Array("WIND");
182		apnlist = new Array("gint.b-online.gr");
183		daillist = new Array("*99#");
184		userlist = new Array("");
185		passlist = new Array("");
186        }
187	else if(country == "HK"){
188		protolist = new Array("1", "1", "1", "1", "1", "1", "1", "1");
189		isplist = new Array("SmarTone", "3", "One2Free", "PCCW mobile", "New World Mobility", "CSL", "CMCC HK", "All 3G ISP support");
190		apnlist = new Array("internet", "ipc.three.com.hk", "internet", "pccw", "internet", "internet", "internet", "");
191		daillist = new Array("*99***1#", "*99***1#", "*99***1#", "*99#", "*99***1#", "*99***1#", "*99***1#", "*99***1#");
192		userlist = new Array("", "", "", "", "", "", "", "");
193		passlist = new Array("", "", "", "", "", "", "", "");
194	}
195	else if(country == "IL"){
196		protolist = new Array("1");
197		isplist = new Array("Cellcom");
198		apnlist = new Array("sphone");
199		daillist = new Array("*99#");
200		userlist = new Array("");
201		passlist = new Array("");
202	}
203	else if(country == "IN"){
204		protolist = new Array("2", "2", "2", "1", "1", "1");
205		isplist = new Array("Reliance", "TATA DOCOMO", "MTS", "AirTel", "IDEA", "MTNL");
206		apnlist = new Array("reliance", "TATA", "", "airtelgprs.com", "Internet", "gprsppsmum");
207		daillist = new Array("#777", "#777", "#777", "*99#", "*99#", "*99#");
208		userlist = new Array("", "internet", "internet@internet.mtsindia.in", "", "", "mtnl");
209		passlist = new Array("", "internet", "mts", "", "", "mtnl123");
210	}
211	else if(country == "ID"){
212		protolist = new Array("1", "1", "1", "1", "1", "2", "1", "2", "2", "2", "2");
213		isplist = new Array("IM2", "INDOSAT", "XL", "Telkomsel", "3", "SMARTFREN", "AXIS", "Esia", "StarOne", "TelkomFlexi", "AHA");
214		apnlist = new Array("indosatm2", "indosat3g", "www.xlgprs.net", "flash", "3gprs", "", "AXIS", "", "", "", "AHA");
215		daillist = new Array("*99#", "*99#", "*99#", "*99#", "*99***1#", "#777", "*99***1#", "#777", "#777", "#777", "#777");
216		userlist = new Array("", "indosat", "xlgprs", "", "3gprs", "smart", "axis", "esia", "starone", "telkomnet@flexi", "aha@aha.co.id");
217		passlist = new Array("", "indosat", "proxl", "", "3gprs", "smart", "123456", "esia", "indosat", "telkom", "aha");
218	}
219	else if(country == "IT"){
220		protolist = new Array("1", "1", "1", "1");
221		isplist = new Array("Vodafone", "TIM", "Wind", "3");
222		apnlist = new Array("web.omnitel.it", "ibox.tim.it", "internet.wind", "tre.it");
223		daillist = new Array("*99#", "*99#", "*99#", "*99#");
224		userlist = new Array("", "", "", "");
225		passlist = new Array("", "", "", "");
226	}
227	else if(country == "JP"){
228		protolist = new Array("1", "1");
229		isplist = new Array("SoftBank", "au");
230		apnlist = new Array("emb.ne.jp", "au.NET");
231		daillist = new Array("*99***1#", "*99**24#");
232		userlist = new Array("em", "au@au-win.ne.jp");
233		passlist = new Array("em", "au");
234	}
235	else if(country == "MY"){
236		protolist = new Array("1", "1", "1", "1", "4");
237		isplist = new Array("Celcom", "Maxis", "DiGi", "U Mobile", "Yes");
238		apnlist = new Array("celcom3g", "unet", "3gdgnet", "my3g", "");
239		daillist = new Array("*99***1#", "*99***1#", "*99#", "*99#", "");
240		userlist = new Array("", "maxis", "", "", "");
241		passlist = new Array("", "wap", "", "", "");
242	}
243	else if(country == "NL"){
244		protolist = new Array("1", "1", "1", "1");
245		isplist = new Array("T-Mobile", "KPN", "Telfort", "Vodafone");
246		apnlist = new Array("internet", "internet", "internet", "internet");
247		daillist = new Array("*99***1#", "*99***1#", "*99***1#", "*99***1#");
248		userlist = new Array("", "", "", "");
249		passlist = new Array("", "", "", "");
250	}
251	else if(country == "NZ"){
252		protolist = new Array("1", "1", "1");
253		isplist = new Array("CHT", "Vodafone", "2degrees");
254		apnlist = new Array("internet", "www.vodafone.net.nz", "2degrees");
255		daillist = new Array("*99#", "*99#", "*99#");
256		userlist = new Array("", "", "");
257		passlist = new Array("", "", "");
258	}
259	else if(country == "NO"){
260		protolist = new Array("1", "1", "1", "1", "1", "1");
261		isplist = new Array("Tele2", "NetCom", "Chess", "Telenor", "Network Norway", "One Call");
262		apnlist = new Array("internet.tele2.no", "netcom", "netcom", "telenor", "internet", "internet");
263		daillist = new Array("*99#", "*99#", "*99#", "*99#", "*99#", "*99#");
264		userlist = new Array("", "", "", "", "", "");
265		passlist = new Array("", "", "", "", "", "");
266	}
267	else if(country == "PH"){
268		protolist = new Array("1", "1", "1", "1", "1", "1");
269		isplist = new Array("Globe", "Globe Prepaid", "Smart", "Smart Bro", "Sun", "Sun Prepaid");
270		apnlist = new Array("internet.globe.com.ph", "http.globe.com.ph", "internet", "smartbro", "fbband", "minternet");
271		daillist = new Array("*99***1#", "*99***1#", "*99#", "*99#", "*99#", "*99#");
272		userlist = new Array("", "", "", "", "", "");
273		passlist = new Array("", "", "", "", "", "");
274	}
275	else if(country == "PL"){
276		protolist = new Array("1", "1", "1", "1", "1", "1", "1", "1", "1");
277		isplist = new Array("Play", "Cyfrowy Polsat", "T-Mobile", "Orange", "Plus", "Heyah", "Aster", "SAMISWOI", "Aero2");
278		apnlist = new Array("internet", "multi.internet", "internet", "internet", "internet", "internet", "aster.internet", "www.plusgsm.pl", "darmowy");
279		daillist = new Array("*99#", "*99***1#", "*99***1#", "*99#", "*99***1#", "*99***1#", "*99#", "*99***1#", "*99#");
280		userlist = new Array("", "", "", "internet", "plusgsm", "heyah", "internet", "internet", "");
281		passlist = new Array("", "", "", "internet", "plusgsm", "heyah", "internet", "internet", "");
282	}
283	else if(country == "PT"){
284		protolist = new Array("1", "1", "1");
285		isplist = new Array("TMN", "Optimus", "Vodafone");
286		apnlist = new Array("internet", "myconnection", "net2.vodafone.pt");
287		daillist = new Array("*99#", "*99#", "*99#");
288		userlist = new Array("", "", "vodafone");
289		passlist = new Array("", "", "vodafone");
290	}
291	else if(country == "RO"){
292		protolist = new Array("1", "1", "1", "1");
293		isplist = new Array("Vodafone", "Orange", "Cosmote", "RCS-RDS");
294		apnlist = new Array("internet.vodafone.ro", "internet", "broadband", "internet");
295		daillist = new Array("*99#", "*99#", "*99#", "*99#");
296		userlist = new Array("internet.vodafone.ro", "", "", "");
297		passlist = new Array("vodafone", "", "", "");
298	}
299	else if(country == "RU"){
300		protolist = new Array("1", "1", "1", "1", "4");
301		isplist = new Array("Beeline", "MegaFon", "MTS", "PrimTel", "Yota");
302		apnlist = new Array("internet.beeline.ru", "internet.nw", "internet.mts.ru", "internet.primtel.ru", "");
303		daillist = new Array("*99***1#", "*99***1#", "*99***1#", "*99***1#", "");
304		userlist = new Array("beeline", "", "", "", "");
305		passlist = new Array("beeline", "", "", "", "");
306	}
307	else if(country == "SG"){
308		protolist = new Array("1", "1", "1", "1");
309		isplist = new Array("M1", "SingTel", "StarHub", "Grid");
310		apnlist = new Array("sunsurf", "internet", "shinternet", "internet");
311		daillist = new Array("*99#", "*99#", "*99#", "*99***1#");
312		userlist = new Array("65", "", "", "");
313		passlist = new Array("user123", "", "", "");
314	}
315	else if(country == "SK"){
316		protolist = new Array("1", "1", "1");
317		isplist = new Array("O2", "Orange", "T-Mobile");
318		apnlist = new Array("o2internet", "internet", "internet");
319		daillist = new Array("*99***1#", "*99#", "*99***1#");
320		userlist = new Array("", "", "");
321		passlist = new Array("", "", "");
322	}
323	else if(country == "ZA"){
324		protolist = new Array("1", "1", "1");
325		isplist = new Array("Vodacom", "MTN", "Cell C");
326		apnlist = new Array("internet", "internet", "internet");
327		daillist = new Array("*99#", "*99#", "*99#");
328		userlist = new Array("", "", "");
329		passlist = new Array("", "", "");
330	}
331	else if(country == "ES"){
332		protolist = new Array("1", "1", "1", "1");
333		isplist = new Array("Vodafone", "movistar", "Simyo", "ONO");
334		apnlist = new Array("airtelnet.es", "movistar.es", "gprs-service.com", "internet.ono.com");
335		daillist = new Array("*99#", "*99#", "*99#", "*99#");
336		userlist = new Array("vodafone", "movistar", "", "");
337		passlist = new Array("vodafone", "movistar", "", "");
338	}
339	else if(country == "SE"){
340		protolist = new Array("1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1");
341		isplist = new Array("3", "Telia", "Telenor", "Tele2", "Glocalnet", "Halebop", "Ventelo", "Spring Mobile", "UVTC (Universal Telecom)", "TDC", "Cellip");
342		apnlist = new Array("data.tre.se", "online.telia.se", "internet.telenor.se", "internet.tele2.se", "internet.glocalnet.se", "halebop.telia.se", "internet.ventelo.se", "data.springmobil.se", "-services sp", "internet.se", "-services sp");
343		daillist = new Array("*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "*99#");
344		userlist = new Array("", "", "", "", "", "", "", "", "", "", "");
345		passlist = new Array("", "", "", "", "", "", "", "", "", "", "");
346	}
347	else if(country == "TW"){
348		protolist = new Array("1", "1", "1", "1", "4");
349		isplist = new Array("Far EasTone", "Chunghwa Telecom", "TW Mobile", "VIBO", "GMC");
350		apnlist = new Array("internet", "internet", "internet", "internet", "");
351		daillist = new Array("*99#", "*99***1#", "*99#", "*99#", "");
352		userlist = new Array("", "", "", "", "");
353		passlist = new Array("", "", "", "", "");
354	}
355	else if(country == "TH"){
356		protolist = new Array("1", "1", "1");
357		isplist = new Array("AIS", "dtac", "truemove H");
358		apnlist = new Array("internet", "www.dtac.co.th", "hinternet");
359		daillist = new Array("*99#", "*99#", "*99#");
360		userlist = new Array("", "", "true");
361		passlist = new Array("", "", "true");
362	}
363	else if(country == "TR"){
364		protolist = new Array("1", "1", "1");
365		isplist = new Array("Turkcell", "Vodafone", "Avea");
366		apnlist = new Array("mgb", "internet", "internet");
367		daillist = new Array("*99#", "*99#", "*99#");
368		userlist = new Array("", "", "");
369		passlist = new Array("", "", "");
370	}
371	else if(country == "UA"){
372		protolist = new Array("1", "1", "1", "1", "1", "1", "2", "1", "2", "2", "2", "1", "2", "4", "4");
373		isplist = new Array("Beeline", "Kyivstar", "Kyivstar Prepaid", "Kyivstar XL", "Kyivstart 3G", "Djuice", "MTS", "Utel", "PEOPLEnet", "Intertelecom", "Intertelecom.Rev.B", "life", "CDMA Ukraine", "FreshTel", "Giraffe");
374		apnlist = new Array("internet.beeline.ua", "www.kyivstar.net", "www.ab.kyivstar.net", "xl.kyivstar.net", "3g.kyivstar.net", "www.djuice.com.ua", "", "3g.utel.ua", "", "", "", "Internet", "", "", "");
375		daillist = new Array("*99#", "*99#", "*99#", "*99#", "*99#", "*99#", "#777", "*99#", "#777", "#777", "#777", "*99#", "#777", "", "");
376		userlist = new Array("mobile", "", "", "", "", "", "mobile", "", "", "IT", "3G_TURBO", "", "", "freshtel", "");
377		passlist = new Array("internet", "", "", "", "", "", "internet", "", "000000", "IT", "3G_TURBO", "", "", "freshtel", "");
378	}
379	else if(country == "UK"){
380		protolist = new Array("1", "1", "1", "1");
381		isplist = new Array("3", "O2", "Vodafone", "Orange");
382		apnlist = new Array("orangenet", "m-bb.o2.co.uk", "PPBUNDLE.INTERNET", "internetvpn");
383		daillist = new Array("*99#", "*99#", "*99#", "*99#");
384		userlist = new Array("", "o2bb", "web", "");
385		passlist = new Array("", "password", "web", "");
386	}
387	else if(country == "US"){
388		protolist = new Array("1", "1", "1", "1", "1", "2", "1", "2");
389		isplist = new Array("Telecom Italia Mobile", "Bell Mobility" ,"Cellular One" ,"Cincinnati Bell" ,"T-Mobile" ,"Verizon", "AT&T", "Sprint");
390		apnlist = new Array("proxy", "", "cellular1wap", "wap.gocbw.com", "epc.tmobile.com", "", "broadband", "");
391		daillist = new Array("*99***1#", "*99***1#", "*99***1#", "*99***1#", "*99***1#", "#777", "*99***1#", "#777");
392		userlist = new Array("", "", "", "", "", "", "", "");
393		passlist = new Array("", "", "", "", "", "", "", "");
394	}
395	else if(country == "VN"){
396		protolist = new Array("1", "1", "1");
397		isplist = new Array("MobiFone", "Vinaphone", "Viettel Mobile");
398		apnlist = new Array("m-wap", "m3-card", "e-connect");
399		daillist = new Array("*99#", "*99#", "*99#");
400		userlist = new Array("mms", "mms", "");
401		passlist = new Array("mms", "mms", "");
402	}
403	else{
404		isplist = new Array("");
405		apnlist = new Array("");
406		daillist = new Array("");
407		userlist = new Array("");
408		passlist = new Array("");
409	}
410}
411