// This array contains the index of rates that should be flagged as new
var new_rates = [180,181,300,301];

// This array contains exceptions when rate is shown. Instead of only one rate, both local and free phone are shown.
var exceptions_rates = [180,181,300,301];


// Defines a in_array equivalent for Javascript.
Array.prototype.in_array = function ( obj ) {
	var len = this.length;
	for ( var x = 0 ; x <= len ; x++ ) {
		if ( this[x] == obj ) return true;
	}
	return false;
}

function get_options_for_index(index) {
	if (index == 0) {
		get_free_phone_rates();
	}
	else if (index == 1) {
		get_local_rates();
	}
	return options;
}

function create_to_dropdown() {
	var Primary = document.getElementById('rates_from').selectedIndex;

	if ((Primary == null) || (Primary == 0)) {
		var options = get_options_for_index(Primary);
 	}
 	else {
		var options = get_options_for_index(Primary);
 	}

 	for (i=document.getElementById('rates_to').options.length; i>0; i--) {
 		document.getElementById('rates_to').options[i] = null;
	}

 	for(i=0; i<options.length; i++) {
 		document.getElementById('rates_to').options[i] = options[i];
 	}

 	document.getElementById('rates_to').options[0].selected = true;
}

$('document').ready(function() {
	$('#rates_from').change(function() {
		create_to_dropdown();
	});
	$('#rates_to').change(function() {
		var plans = new Array();
		plans[1] = 5;
		plans[2] = 10;
		plans[3] = 20;
		plans[4] = 50;
		plans[5] = 100;
		var selection = document.getElementById('rates_to').selectedIndex;
		if (exceptions_rates.in_array(selection)) { // Manages exceptions to show both free and local rates.
			// Replaces the shown elements to have two lines with both local and toll free
			var div_affiche = document.getElementById('show_rate_line2');
			div_affiche.style.display = 'inline';
			// Get both values for Free and Local rates.
			var my_options = get_local_rates();
			rate = my_options[selection].value;
			var my_options = get_free_phone_rates();
			free_phone_rate = my_options[selection].value;
			
			// Insert values in document.
			var element_index = new_rates.indexOf(selection);
			var is_new_rate = false;
			if (element_index >= 0) is_new_rate = true;
			$("#rate").html(String(rate));
			$("#rate2").html(String(free_phone_rate));
			$("#label_per_minute").text('/min Local access number*');
			if (is_new_rate) {
				$("#newrate").text('new');
				$("#newrate2").text('new');
			}
			else {
				$("#newrate").text('');
				$("#newrate2").text('');
			}
			
			
		} else {
			// Hides the second line if shown.
			var div_affiche = document.getElementById('show_rate_line2');
			div_affiche.style.display = 'none';
			$("#label_per_minute").text(' Per minute*');

			var rate = document.getElementById('rates_to').options[selection].value;
			var element_index = new_rates.indexOf(selection);
			var is_new_rate = false;
			if (element_index >= 0) is_new_rate = true;
			$("#rate").html(String(rate));
			if (is_new_rate) {
				$("#newrate").text('new');
			}
			else {
				$("#newrate").text('');
			}
		}
		for (i=1; i<6; i++) {
			if (selection == 0) {
				$("#minutes_plan_"+i).text('-');
			}
			else {
				var min_total = plans[i] / rate;
				min_total = Math.floor(min_total);
				$("#minutes_plan_"+i).html(String(min_total) + " min<strong>**</strong>");
			}
		}
	});
	
	$('#rates_to').keypress(function() {
		var plans = new Array();
		plans[1] = 5;
		plans[2] = 10;
		plans[3] = 20;
		plans[4] = 50;
		plans[5] = 100;
		var selection = document.getElementById('rates_to').selectedIndex;
		if (exceptions_rates.in_array(selection)) { // Manages exceptions to show both free and local rates.
			// Replaces the shown elements to have two lines with both local and toll free
			var div_affiche = document.getElementById('show_rate_line2');
			div_affiche.style.display = 'inline';
			// Get both values for Free and Local rates.
			var my_options = get_local_rates();
			rate = my_options[selection].value;
			var my_options = get_free_phone_rates();
			free_phone_rate = my_options[selection].value;
			
			// Insert values in document.
			var element_index = new_rates.indexOf(selection);
			var is_new_rate = false;
			if (element_index >= 0) is_new_rate = true;
			$("#rate").html(String(rate));
			$("#rate2").html(String(free_phone_rate));
			$("#label_per_minute").text('/min Local access number*');
			if (is_new_rate) {
				$("#newrate").text('new');
				$("#newrate2").text('new');
			}
			else {
				$("#newrate").text('');
				$("#newrate2").text('');
			}
			
			
		} else {
			// Hides the second line if shown.
			var div_affiche = document.getElementById('show_rate_line2');
			div_affiche.style.display = 'none';
			$("#label_per_minute").text(' Per minute*');

			var rate = document.getElementById('rates_to').options[selection].value;
			var element_index = new_rates.indexOf(selection);
			var is_new_rate = false;
			if (element_index >= 0) is_new_rate = true;
			$("#rate").html(String(rate));
			if (is_new_rate) {
				$("#newrate").text('new');
			}
			else {
				$("#newrate").text('');
			}
		}
		for (i=1; i<6; i++) {
			if (selection == 0) {
				$("#minutes_plan_"+i).text('-');
			}
			else {
				var min_total = plans[i] / rate;
				min_total = Math.floor(min_total);
				$("#minutes_plan_"+i).html(String(min_total) + " min<strong>**</strong>");
			}
		}
	});
	create_to_dropdown();
});


// Liste of rates for various cases (free phone or local, for both normal and mobile).
function get_free_phone_rates() {
	// rates for 0800
	options = new Array();
	options[0] = new Option('Choose one...', '0');
options[1] = new Option('Afghanistan - Mobile',0.223);
options[2] = new Option('Afghanistan',0.223);
options[3] = new Option('Albania - Mobile',0.255);
options[4] = new Option('Albania',0.077);
options[5] = new Option('Algeria',0.084);
options[6] = new Option('Algeria - Mobile',0.309);
options[7] = new Option('American Samoa - Mobile',0.086);
options[8] = new Option('American Samoa',0.086);
options[9] = new Option('Andorra - Mobile',0.201);
options[10] = new Option('Andorra',0.056);
options[11] = new Option('Angola - Mobile',0.154);
options[12] = new Option('Angola',0.116);
options[13] = new Option('Anguilla - Mobile',0.135);
options[14] = new Option('Anguilla',0.135);
options[15] = new Option('Antigua - Mobile',0.118);
options[16] = new Option('Antigua',0.117);
options[17] = new Option('Argentina - Mobile',0.11);
options[18] = new Option('Argentina',0.056);
options[19] = new Option('Armenia',0.106);
options[20] = new Option('Armenia - Mobile',0.233);
options[21] = new Option('Aruba - Mobile',0.164);
options[22] = new Option('Aruba',0.094);
options[23] = new Option('Ascention Is',0.376);
options[24] = new Option('Australia',0.044);
options[25] = new Option('Australia - Mobile',0.109);
options[26] = new Option('Austria - Mobile',0.258);
options[27] = new Option('Austria',0.054);
options[28] = new Option('Azerbaizan - Mobile',0.236);
options[29] = new Option('Azerbaizan',0.146);
options[30] = new Option('Bahamas',0.061);
options[31] = new Option('Bahamas',0.061);
options[32] = new Option('Bahrain',0.087);
options[33] = new Option('Bahrain - Mobile',0.083);
options[34] = new Option('Bangladesh',0.059);
options[35] = new Option('Bangladesh - Mobile',0.059);
options[36] = new Option('Barbados - Mobile',0.188);
options[37] = new Option('Barbados',0.089);
options[38] = new Option('Belarus - Mobile',0.228);
options[39] = new Option('Belarus',0.223);
options[40] = new Option('Belgium',0.044);
options[41] = new Option('Belgium - Mobile',0.189);
options[42] = new Option('Belize',0.205);
options[43] = new Option('Belize - Mobile',0.205);
options[44] = new Option('Benin Rep. - Mobile',0.165);
options[45] = new Option('Benin Rep.',0.192);
options[46] = new Option('Bermuda',0.071);
options[47] = new Option('Bermuda - Mobile',0.071);
options[48] = new Option('Bhutan',0.134);
options[49] = new Option('Bhutan - Mobile',0.134);
options[50] = new Option('Bolivia - Mobile',0.149);
options[51] = new Option('Bolivia',0.122);
options[52] = new Option('Bosnia & Herzego - Mobile',0.273);
options[53] = new Option('Bosnia & Herzego',0.127);
options[54] = new Option('Botswana - Mobile',0.198);
options[55] = new Option('Botswana',0.093);
options[56] = new Option('Brazil',0.058);
options[57] = new Option('Brazil - Mobile',0.166);
options[58] = new Option('British Virgin Islands - Mobile',0.132);
options[59] = new Option('British Virgin Islands',0.132);
options[60] = new Option('Brunei - Mobile',0.07);
options[61] = new Option('Brunei',0.052);
options[62] = new Option('Bulgaria - Mobile',0.309);
options[63] = new Option('Bulgaria',0.072);
options[64] = new Option('Burkina Fasso - Mobile',0.164);
options[65] = new Option('Burkina Fasso',0.161);
options[66] = new Option('Burundi - Mobile',0.146);
options[67] = new Option('Burundi',0.094);
options[68] = new Option('Cambodia',0.08);
options[69] = new Option('Cambodia - Mobile',0.077);
options[70] = new Option('Cameroon',0.253);
options[71] = new Option('Cameroon - Mobile',0.207);
options[72] = new Option('Canada - All',0.039);
options[73] = new Option('Cape Verde Is - Mobile',0.258);
options[74] = new Option('Cape Verde Is',0.181);
options[75] = new Option('Cayman Islands - Mobile',0.153);
options[76] = new Option('Cayman Islands',0.153);
options[77] = new Option('Central Africa',0.581);
options[78] = new Option('Central Africa - Mobile',0.581);
options[79] = new Option('Chad Rep. - Mobile',0.238);
options[80] = new Option('Chad Rep.',0.238);
options[81] = new Option('Chile',0.053);
options[82] = new Option('Chile - Mobile',0.202);
options[83] = new Option('China',0.039);
options[84] = new Option('China - Mobile',0.039);
options[85] = new Option('Colombia Rep',0.062);
options[86] = new Option('Colombia Rep - Mobile',0.084);
options[87] = new Option('Comoros - Mobile',0.361);
options[88] = new Option('Comoros',0.361);
options[89] = new Option('Congo',0.328);
options[90] = new Option('Congo - Mobile',0.328);
options[91] = new Option('Cook Island',0.632);
options[92] = new Option('Cook Island - Mobile',0.632);
options[93] = new Option('Costa Rica',0.071);
options[94] = new Option('Costa Rica - Mobile',0.076);
options[95] = new Option('Croatia - Mobile',0.198);
options[96] = new Option('Croatia',0.054);
options[97] = new Option('Cuba',0.882);
options[98] = new Option('Cuba - Mobile',0.882);
options[99] = new Option('Cyprus - Mobile',0.079);
options[100] = new Option('Cyprus',0.051);
options[101] = new Option('Czech Rep.',0.05);
options[102] = new Option('Czech Rep. - Mobile',0.176);
options[103] = new Option('Denmark',0.05);
options[104] = new Option('Denmark - Mobile',0.212);
options[105] = new Option('Djibouti - Mobile',0.34);
options[106] = new Option('Djibouti',0.312);
options[107] = new Option('Dominica - Mobile',0.2);
options[108] = new Option('Dominica',0.13);
options[109] = new Option('Dominican',0.059);
options[110] = new Option('Dominican - Mobile',0.095);
options[111] = new Option('East Timor',0.698);
options[112] = new Option('East Timor - Mobile',0.698);
options[113] = new Option('Ecuador - Mobile',0.17);
options[114] = new Option('Ecuador',0.102);
options[115] = new Option('Egypt',0.106);
options[116] = new Option('Egypt - Mobile',0.113);
options[117] = new Option('El Salvador - Mobile',0.15);
options[118] = new Option('El Salvador',0.128);
options[119] = new Option('Eritrea',0.255);
options[120] = new Option('Eritrea - Mobile',0.255);
options[121] = new Option('Estonia - Mobile',0.277);
options[122] = new Option('Estonia',0.052);
options[123] = new Option('Ethiopia - Mobile',0.253);
options[124] = new Option('Ethiopia',0.236);
options[125] = new Option('Falkland Islands',0.505);
options[126] = new Option('Falkland Islands - Mobile',0.505);
options[127] = new Option('Faroes',0.222);
options[128] = new Option('Faroes - Mobile',0.222);
options[129] = new Option('Fiji - Mobile',0.228);
options[130] = new Option('Fiji',0.174);
options[131] = new Option('Finland',0.083);
options[132] = new Option('Finland - Mobile',0.109);
options[133] = new Option('France',0.044);
options[134] = new Option('France - Mobile',0.109);
options[135] = new Option('French Guiana',0.084);
options[136] = new Option('French Guiana - Mobile',0.253);
options[137] = new Option('Fr.Polynesia - Mobile',0.223);
options[138] = new Option('Fr.Polynesia',0.223);
options[139] = new Option('Gabon Republic - Mobile',0.208);
options[140] = new Option('Gabon Republic',0.159);
options[141] = new Option('Gambia',0.33);
options[142] = new Option('Gambia - Mobile',0.315);
options[143] = new Option('Georgia',0.065);
options[144] = new Option('Georgia - Mobile',0.11);
options[145] = new Option('Germany',0.039);
options[146] = new Option('Germany - Mobile',0.129);
options[147] = new Option('Ghana - Mobile',0.161);
options[148] = new Option('Ghana',0.085);
options[149] = new Option('Gibraltor',0.074);
options[150] = new Option('Gibraltor - Mobile',0.269);
options[151] = new Option('Greece',0.05);
options[152] = new Option('Greece - Mobile',0.148);
options[153] = new Option('Greenland',0.484);
options[154] = new Option('Greenland - Mobile',0.484);
options[155] = new Option('Greneda - Mobile',0.182);
options[156] = new Option('Greneda',0.11);
options[157] = new Option('Guadeloupe - Mobile',0.296);
options[158] = new Option('Guadeloupe',0.056);
options[159] = new Option('Guam',0.052);
options[160] = new Option('Guam',0.052);
options[161] = new Option('Guatemala',0.126);
options[162] = new Option('Guatemala - Mobile',0.124);
options[163] = new Option('Guinea',0.269);
options[164] = new Option('Guinea - Mobile',0.264);
options[165] = new Option('Guiana Bissau - Mobile',0.434);
options[166] = new Option('Guiana Bissau',0.434);
options[167] = new Option('Guyana Rep',0.253);
options[168] = new Option('Guyana Rep - Mobile',0.253);
options[169] = new Option('Haiti',0.173);
options[170] = new Option('Haiti - Mobile',0.206);
options[171] = new Option('Honduras',0.152);
options[172] = new Option('Honduras - Mobile',0.162);
options[173] = new Option('Hongkong',0.049);
options[174] = new Option('Hongkong - Mobile',0.039);
options[175] = new Option('Hungary',0.05);
options[176] = new Option('Hungary - Mobile',0.111);
options[177] = new Option('Iceland - Mobile',0.293);
options[178] = new Option('Iceland',0.053);
options[179] = new Option('India - Mobile',0.039);
options[180] = new Option('India',0.039);
options[181] = new Option('Indonesia',0.089);
options[182] = new Option('Indonesia - Mobile',0.099);
options[183] = new Option('Iran',0.1);
options[184] = new Option('Iran - Mobile',0.118);
options[185] = new Option('Iraq - Mobile',0.12);
options[186] = new Option('Iraq',0.12);
options[187] = new Option('Ireland',0.052);
options[188] = new Option('Ireland - Mobile',0.217);
options[189] = new Option('Israel',0.05);
options[190] = new Option('Israel - Mobile',0.102);
options[191] = new Option('Italy',0.044);
options[192] = new Option('Italy - Mobile',0.159);
options[193] = new Option('Ivory Coast',3);
options[194] = new Option('Ivory Coast - Mobile',3);
options[195] = new Option('Jamaica',0.077);
options[196] = new Option('Jamaica - Mobile',0.213);
options[197] = new Option('Japan',0.058);
options[198] = new Option('Japan - Mobile',0.149);
options[199] = new Option('Jordon - Mobile',0.118);
options[200] = new Option('Jordon',0.057);
options[201] = new Option('Kazakstan - Mobile',0.119);
options[202] = new Option('Kazakstan',0.09);
options[203] = new Option('Kenya',0.099);
options[204] = new Option('Kenya - Mobile',0.136);
options[205] = new Option('Kiribati',0.528);
options[206] = new Option('Kiribati - Mobile',0.528);
options[207] = new Option('Kuwait',0.111);
options[208] = new Option('Kuwait - Mobile',0.115);
options[209] = new Option('Kirghistan',0.11);
options[210] = new Option('Kirghistan - Mobile',0.119);
options[211] = new Option('Laos',0.073);
options[212] = new Option('Laos - Mobile',0.073);
options[213] = new Option('Latvia - Mobile',0.32);
options[214] = new Option('Latvia',0.061);
options[215] = new Option('Lebanon',0.095);
options[216] = new Option('Lebanon - Mobile',0.166);
options[217] = new Option('Lesotho',0.146);
options[218] = new Option('Lesotho - Mobile',0.136);
options[219] = new Option('Liberia',0.245);
options[220] = new Option('Liberia - Mobile',0.218);
options[221] = new Option('Libya - Mobile',0.243);
options[222] = new Option('Libya',0.169);
options[223] = new Option('Liechtenstein - Mobile',0.249);
options[224] = new Option('Liechtenstein',0.072);
options[225] = new Option('Lithuania',0.1);
options[226] = new Option('Lithuania - Mobile',0.171);
options[227] = new Option('Luxembourg',0.05);
options[228] = new Option('Luxembourg - Mobile',0.171);
options[229] = new Option('Macau',0.059);
options[230] = new Option('Macau - Mobile',0.059);
options[231] = new Option('Macedonia - Mobile',0.257);
options[232] = new Option('Macedonia',0.257);
options[233] = new Option('Madagascar',0.26);
options[234] = new Option('Madagascar - Mobile',0.257);
options[235] = new Option('Malawi',0.114);
options[236] = new Option('Malawi - Mobile',0.132);
options[237] = new Option('Malaysia',0.052);
options[238] = new Option('Malaysia - Mobile',0.064);
options[239] = new Option('Maldives - Mobile',0.274);
options[240] = new Option('Maldives',0.151);
options[241] = new Option('Mali',0.238);
options[242] = new Option('Mali - Mobile',0.238);
options[243] = new Option('Malta - Mobile',0.205);
options[244] = new Option('Malta',0.072);
options[245] = new Option('Mariana Island',0.062);
options[246] = new Option('Mariana Island - Mobile',0.062);
options[247] = new Option('Marshall Island',0.233);
options[248] = new Option('Marshall Island - Mobile',0.233);
options[249] = new Option('Martinique - Mobile',0.31);
options[250] = new Option('Martinique',0.056);
options[251] = new Option('Mauritania',0.248);
options[252] = new Option('Mauritania - Mobile',0.248);
options[253] = new Option('Mauritius',0.081);
options[254] = new Option('Mauritius - Mobile',0.081);
options[255] = new Option('Mayotte - Mobile',0.246);
options[256] = new Option('Mayotte',0.156);
options[257] = new Option('Mexico',0.076);
options[258] = new Option('Mexico - Mobile',0.145);
options[259] = new Option('Micronesia',0.187);
options[260] = new Option('Micronesia - Mobile',0.187);
options[261] = new Option('Moldavia - Mobile',0.145);
options[262] = new Option('Moldavia',0.117);
options[263] = new Option('Monaco - Mobile',0.227);
options[264] = new Option('Monaco',0.064);
options[265] = new Option('Mongolia',0.086);
options[266] = new Option('Mongolia - Mobile',0.086);
options[267] = new Option('Montserrat',0.14);
options[268] = new Option('Montserrat - Mobile',0.14);
options[269] = new Option('Morocco',0.289);
options[270] = new Option('Morocco - Mobile',0.289);
options[271] = new Option('Mozambique - Mobile',0.229);
options[272] = new Option('Mozambique',0.089);
options[273] = new Option('Myanmar',0.271);
options[274] = new Option('Myanmar - Mobile',0.271);
options[275] = new Option('Namibia - Mobile',0.183);
options[276] = new Option('Namibia',0.086);
options[277] = new Option('Nepal',0.151);
options[278] = new Option('Nepal - Mobile',0.151);
options[279] = new Option('Netherlands',0.049);
options[280] = new Option('Netherlands - Mobile',0.216);
options[281] = new Option('Netherlands Ant',0.146);
options[282] = new Option('Netherlands Ant - Mobile',0.164);
options[283] = new Option('New Caledonia',0.243);
options[284] = new Option('New Caledonia - Mobile',0.243);
options[285] = new Option('Newzealand - Mobile',0.178);
options[286] = new Option('Newzealand',0.05);
options[287] = new Option('Nicaragua - Mobile',0.202);
options[288] = new Option('Nicaragua',0.131);
options[289] = new Option('Niger - Mobile',0.156);
options[290] = new Option('Niger',0.146);
options[291] = new Option('Nigeria - Mobile',0.133);
options[292] = new Option('Nigeria',0.113);
options[293] = new Option('North Korea',0.53);
options[294] = new Option('North Korea - Mobile',0.53);
options[295] = new Option('Norway',0.05);
options[296] = new Option('Norway - Mobile',0.183);
options[297] = new Option('Oman - Mobile',0.189);
options[298] = new Option('Oman',0.125);
options[299] = new Option('Pakistan',0.079);
options[300] = new Option('Pakistan - Mobile',0.079);
options[301] = new Option('Palau',0.294);
options[302] = new Option('Palau - Mobile',0.294);
options[303] = new Option('Palestine - Mobile',0.175);
options[304] = new Option('Palestine',0.217);
options[305] = new Option('Panama',0.071);
options[306] = new Option('Panama - Mobile',0.131);
options[307] = new Option('Papua New Guinea',0.346);
options[308] = new Option('Papua New Guinea - Mobile',0.346);
options[309] = new Option('Paraguay',0.066);
options[310] = new Option('Paraguay - Mobile',0.101);
options[311] = new Option('Peru',0.063);
options[312] = new Option('Peru - Mobile',0.146);
options[313] = new Option('Philippines',0.119);
options[314] = new Option('Philippines - Mobile',0.149);
options[315] = new Option('Poland',0.05);
options[316] = new Option('Poland - Mobile',0.222);
options[317] = new Option('Portugal',0.044);
options[318] = new Option('Portugal - Mobile',0.119);
options[319] = new Option('Puerto Rico',0.049);
options[320] = new Option('Puerto Rico - Mobile',0.049);
options[321] = new Option('Qatar',0.147);
options[322] = new Option('Qatar - Mobile',0.182);
options[323] = new Option('Reunion Island',0.234);
options[324] = new Option('Reunion Island - Mobile',0.234);
options[325] = new Option('Roumania - Mobile',0.238);
options[326] = new Option('Roumania',0.059);
options[327] = new Option('Russia',0.072);
options[328] = new Option('Russia - Mobile',0.067);
options[329] = new Option('Rwanda',0.144);
options[330] = new Option('Rwanda - Mobile',0.119);
options[331] = new Option('San Marino',0.129);
options[332] = new Option('San Marino - Mobile',0.064);
options[333] = new Option('Sao Tome & Principe',0.882);
options[334] = new Option('Sao Tome & Principe - Mobile',0.632);
options[335] = new Option('Saudi Arabia',0.094);
options[336] = new Option('Saudi Arabia - Mobile',0.133);
options[337] = new Option('Senegal - Mobile',0.213);
options[338] = new Option('Senegal',0.135);
options[339] = new Option('Seychelles - Mobile',0.197);
options[340] = new Option('Seychelles',0.089);
options[341] = new Option('Sierra Leone',0.34);
options[342] = new Option('Sierra Leone - Mobile',0.315);
options[343] = new Option('Singapore',0.039);
options[344] = new Option('Singapore - Mobile',0.049);
options[345] = new Option('Slovakia',0.055);
options[346] = new Option('Slovakia - Mobile',0.207);
options[347] = new Option('Slovenia - Mobile',0.275);
options[348] = new Option('Slovenia',0.07);
options[349] = new Option('Solomon Isl',0.837);
options[350] = new Option('Solomon Isl - Mobile',0.837);
options[351] = new Option('Somalia',0.488);
options[352] = new Option('Somalia - Mobile',0.446);
options[353] = new Option('South Africa',0.066);
options[354] = new Option('South Africa - Mobile',0.154);
options[355] = new Option('South Korea - Mobile',0.062);
options[356] = new Option('South Korea',0.054);
options[357] = new Option('Spain',0.039);
options[358] = new Option('Spain - Mobile',0.119);
options[359] = new Option('Srilanka',0.109);
options[360] = new Option('Srilanka - Mobile',0.119);
options[361] = new Option('St.Helena',0.509);
options[362] = new Option('St. Kitts & Nevis Island - Mobile',0.199);
options[363] = new Option('St. Kitts & Nevis Island',0.199);
options[364] = new Option('St.Lucia W.I. - Mobile',0.197);
options[365] = new Option('St.Lucia W.I.',0.117);
options[366] = new Option('St. Pierre & Miquelon',0.166);
options[367] = new Option('St. Pierre & Miquelon - Mobile',0.166);
options[368] = new Option('St.Vincent - Mobile',0.205);
options[369] = new Option('St.Vincent',0.12);
options[370] = new Option('Sudan - Mobile',0.169);
options[371] = new Option('Sudan',0.166);
options[372] = new Option('Surinam',0.183);
options[373] = new Option('Surinam - Mobile',0.183);
options[374] = new Option('Swaziland - Mobile',0.169);
options[375] = new Option('Swaziland',0.169);
options[376] = new Option('Sweden',0.047);
options[377] = new Option('Sweden - Mobile',0.086);
options[378] = new Option('Switzerland',0.039);
options[379] = new Option('Switzerland - Mobile',0.209);
options[380] = new Option('Syria - Mobile',0.162);
options[381] = new Option('Syria',0.138);
options[382] = new Option('Taiwan',0.05);
options[383] = new Option('Taiwan - Mobile',0.097);
options[384] = new Option('Tajikistan',0.115);
options[385] = new Option('Tajikistan - Mobile',0.115);
options[386] = new Option('Tanzania - Mobile',0.11);
options[387] = new Option('Tanzania',0.107);
options[388] = new Option('Thailand',0.064);
options[389] = new Option('Thailand - Mobile',0.052);
options[390] = new Option('Togo',0.328);
options[391] = new Option('Togo - Mobile',0.331);
options[392] = new Option('Tonga',0.246);
options[393] = new Option('Tonga - Mobile',0.246);
options[394] = new Option('Trinidad - Mobile',0.095);
options[395] = new Option('Trinidad',0.066);
options[396] = new Option('Tunisia - Mobile',0.33);
options[397] = new Option('Tunisia',0.164);
options[398] = new Option('Turkey - Mobile',0.478);
options[399] = new Option('Turkey',0.074);
options[400] = new Option('Turkmenistan',0.108);
options[401] = new Option('Turkmenistan - Mobile',0.108);
options[402] = new Option('Turks  & Caicos - Mobile',0.19);
options[403] = new Option('Turks  & Caicos',0.118);
options[404] = new Option('U S Virgin Island',0.05);
options[405] = new Option('Uganda - Mobile',0.134);
options[406] = new Option('Uganda',0.116);
options[407] = new Option('Ukraine - Mobile',0.123);
options[408] = new Option('Ukraine',0.101);
options[409] = new Option('Uae',0.149);
options[410] = new Option('Uae - Mobile',0.149);
options[411] = new Option('Uruguay - Mobile',0.183);
options[412] = new Option('Uruguay',0.077);
options[413] = new Option('Usa - All',0.039);
options[414] = new Option('Uzbekistan - Mobile',0.088);
options[415] = new Option('Uzbekistan',0.082);
options[416] = new Option('Vanuatu',0.581);
options[417] = new Option('Vanuatu - Mobile',0.581);
options[418] = new Option('Venezuela',0.071);
options[419] = new Option('Venezuela - Mobile',0.161);
options[420] = new Option('Vietnam - Mobile',0.075);
options[421] = new Option('Vietnam',0.069);
options[422] = new Option('Wallis & Futuna',1);
options[423] = new Option('Yemen-Ar',0.144);
options[424] = new Option('Yemen-Ar - Mobile',0.144);
options[425] = new Option('Zambia - Mobile',0.133);
options[426] = new Option('Zambia',0.063);
options[427] = new Option('Zimbabwe',0.083);
options[428] = new Option('Zimbabwe - Mobile',0.387);
	return options;
}

function get_local_rates() {
	// rates for local call
	options = new Array();
	options[0] = new Option('Choose one...', '0');
options[1] = new Option('Afghanistan - Mobile',0.21);
options[2] = new Option('Afghanistan',0.21);
options[3] = new Option('Albania - Mobile',0.243);
options[4] = new Option('Albania',0.069);
options[5] = new Option('Algeria',0.074);
options[6] = new Option('Algeria - Mobile',0.299);
options[7] = new Option('American Samoa - Mobile',0.078);
options[8] = new Option('American Samoa',0.077);
options[9] = new Option('Andorra - Mobile',0.189);
options[10] = new Option('Andorra',0.047);
options[11] = new Option('Angola - Mobile',0.141);
options[12] = new Option('Angola',0.104);
options[13] = new Option('Anguilla - Mobile',0.123);
options[14] = new Option('Anguilla',0.123);
options[15] = new Option('Antigua - Mobile',0.106);
options[16] = new Option('Antigua',0.104);
options[17] = new Option('Argentina - Mobile',0.098);
options[18] = new Option('Argentina',0.047);
options[19] = new Option('Armenia',0.094);
options[20] = new Option('Armenia - Mobile',0.221);
options[21] = new Option('Aruba - Mobile',0.151);
options[22] = new Option('Aruba',0.085);
options[23] = new Option('Ascention Is',0.364);
options[24] = new Option('Australia',0.034);
options[25] = new Option('Australia - Mobile',0.099);
options[26] = new Option('Austria - Mobile',0.246);
options[27] = new Option('Austria',0.045);
options[28] = new Option('Azerbaizan - Mobile',0.224);
options[29] = new Option('Azerbaizan',0.134);
options[30] = new Option('Bahamas',0.053);
options[31] = new Option('Bahamas',0.053);
options[32] = new Option('Bahrain',0.078);
options[33] = new Option('Bahrain - Mobile',0.075);
options[34] = new Option('Bangladesh',0.049);
options[35] = new Option('Bangladesh - Mobile',0.049);
options[36] = new Option('Barbados - Mobile',0.176);
options[37] = new Option('Barbados',0.08);
options[38] = new Option('Belarus - Mobile',0.215);
options[39] = new Option('Belarus',0.21);
options[40] = new Option('Belgium',0.034);
options[41] = new Option('Belgium - Mobile',0.179);
options[42] = new Option('Belize',0.192);
options[43] = new Option('Belize - Mobile',0.192);
options[44] = new Option('Benin Rep. - Mobile',0.153);
options[45] = new Option('Benin Rep.',0.18);
options[46] = new Option('Bermuda',0.062);
options[47] = new Option('Bermuda - Mobile',0.062);
options[48] = new Option('Bhutan',0.121);
options[49] = new Option('Bhutan - Mobile',0.121);
options[50] = new Option('Bolivia - Mobile',0.136);
options[51] = new Option('Bolivia',0.11);
options[52] = new Option('Bosnia & Herzego - Mobile',0.26);
options[53] = new Option('Bosnia & Herzego',0.114);
options[54] = new Option('Botswana - Mobile',0.186);
options[55] = new Option('Botswana',0.084);
options[56] = new Option('Brazil',0.049);
options[57] = new Option('Brazil - Mobile',0.154);
options[58] = new Option('British Virgin Islands - Mobile',0.119);
options[59] = new Option('British Virgin Islands',0.119);
options[60] = new Option('Brunei - Mobile',0.062);
options[61] = new Option('Brunei',0.044);
options[62] = new Option('Bulgaria - Mobile',0.297);
options[63] = new Option('Bulgaria',0.064);
options[64] = new Option('Burkina Fasso - Mobile',0.152);
options[65] = new Option('Burkina Fasso',0.148);
options[66] = new Option('Burundi - Mobile',0.134);
options[67] = new Option('Burundi',0.086);
options[68] = new Option('Cambodia',0.072);
options[69] = new Option('Cambodia - Mobile',0.069);
options[70] = new Option('Cameroon',0.241);
options[71] = new Option('Cameroon - Mobile',0.194);
options[72] = new Option('Canada - All',0.029);
options[73] = new Option('Cape Verde Is - Mobile',0.246);
options[74] = new Option('Cape Verde Is',0.168);
options[75] = new Option('Cayman Islands - Mobile',0.141);
options[76] = new Option('Cayman Islands',0.141);
options[77] = new Option('Central Africa',0.569);
options[78] = new Option('Central Africa - Mobile',0.569);
options[79] = new Option('Chad Rep. - Mobile',0.226);
options[80] = new Option('Chad Rep.',0.226);
options[81] = new Option('Chile',0.045);
options[82] = new Option('Chile - Mobile',0.19);
options[83] = new Option('China',0.029);
options[84] = new Option('China - Mobile',0.029);
options[85] = new Option('Colombia Rep',0.053);
options[86] = new Option('Colombia Rep - Mobile',0.075);
options[87] = new Option('Comoros - Mobile',0.348);
options[88] = new Option('Comoros',0.348);
options[89] = new Option('Congo',0.316);
options[90] = new Option('Congo - Mobile',0.316);
options[91] = new Option('Cook Island',0.62);
options[92] = new Option('Cook Island - Mobile',0.62);
options[93] = new Option('Costa Rica',0.062);
options[94] = new Option('Costa Rica - Mobile',0.067);
options[95] = new Option('Croatia - Mobile',0.186);
options[96] = new Option('Croatia',0.045);
options[97] = new Option('Cuba',0.87);
options[98] = new Option('Cuba - Mobile',0.87);
options[99] = new Option('Cyprus - Mobile',0.071);
options[100] = new Option('Cyprus',0.042);
options[101] = new Option('Czech Rep.',0.042);
options[102] = new Option('Czech Rep. - Mobile',0.164);
options[103] = new Option('Denmark',0.042);
options[104] = new Option('Denmark - Mobile',0.2);
options[105] = new Option('Djibouti - Mobile',0.328);
options[106] = new Option('Djibouti',0.299);
options[107] = new Option('Dominica - Mobile',0.188);
options[108] = new Option('Dominica',0.118);
options[109] = new Option('Dominican',0.05);
options[110] = new Option('Dominican - Mobile',0.086);
options[111] = new Option('East Timor',0.685);
options[112] = new Option('East Timor - Mobile',0.685);
options[113] = new Option('Ecuador - Mobile',0.158);
options[114] = new Option('Ecuador',0.092);
options[115] = new Option('Egypt',0.095);
options[116] = new Option('Egypt - Mobile',0.101);
options[117] = new Option('El Salvador - Mobile',0.138);
options[118] = new Option('El Salvador',0.115);
options[119] = new Option('Eritrea',0.243);
options[120] = new Option('Eritrea - Mobile',0.243);
options[121] = new Option('Estonia - Mobile',0.264);
options[122] = new Option('Estonia',0.043);
options[123] = new Option('Ethiopia - Mobile',0.241);
options[124] = new Option('Ethiopia',0.224);
options[125] = new Option('Falkland Islands',0.492);
options[126] = new Option('Falkland Islands - Mobile',0.492);
options[127] = new Option('Faroes',0.21);
options[128] = new Option('Faroes - Mobile',0.21);
options[129] = new Option('Fiji - Mobile',0.215);
options[130] = new Option('Fiji',0.162);
options[131] = new Option('Finland',0.074);
options[132] = new Option('Finland - Mobile',0.097);
options[133] = new Option('France',0.034);
options[134] = new Option('France - Mobile',0.099);
options[135] = new Option('French Guiana',0.076);
options[136] = new Option('French Guiana - Mobile',0.241);
options[137] = new Option('Fr.Polynesia - Mobile',0.21);
options[138] = new Option('Fr.Polynesia',0.21);
options[139] = new Option('Gabon Republic - Mobile',0.195);
options[140] = new Option('Gabon Republic',0.146);
options[141] = new Option('Gambia',0.318);
options[142] = new Option('Gambia - Mobile',0.302);
options[143] = new Option('Georgia',0.057);
options[144] = new Option('Georgia - Mobile',0.098);
options[145] = new Option('Germany',0.029);
options[146] = new Option('Germany - Mobile',0.119);
options[147] = new Option('Ghana - Mobile',0.149);
options[148] = new Option('Ghana',0.076);
options[149] = new Option('Gibraltor',0.065);
options[150] = new Option('Gibraltor - Mobile',0.256);
options[151] = new Option('Greece',0.042);
options[152] = new Option('Greece - Mobile',0.135);
options[153] = new Option('Greenland',0.471);
options[154] = new Option('Greenland - Mobile',0.471);
options[155] = new Option('Greneda - Mobile',0.169);
options[156] = new Option('Greneda',0.098);
options[157] = new Option('Guadeloupe - Mobile',0.284);
options[158] = new Option('Guadeloupe',0.048);
options[159] = new Option('Guam',0.044);
options[160] = new Option('Guam',0.044);
options[161] = new Option('Guatemala',0.114);
options[162] = new Option('Guatemala - Mobile',0.112);
options[163] = new Option('Guinea',0.256);
options[164] = new Option('Guinea - Mobile',0.251);
options[165] = new Option('Guiana Bissau - Mobile',0.422);
options[166] = new Option('Guiana Bissau',0.422);
options[167] = new Option('Guyana Rep',0.241);
options[168] = new Option('Guyana Rep - Mobile',0.241);
options[169] = new Option('Haiti',0.161);
options[170] = new Option('Haiti - Mobile',0.193);
options[171] = new Option('Honduras',0.14);
options[172] = new Option('Honduras - Mobile',0.15);
options[173] = new Option('Hongkong',0.039);
options[174] = new Option('Hongkong - Mobile',0.029);
options[175] = new Option('Hungary',0.042);
options[176] = new Option('Hungary - Mobile',0.099);
options[177] = new Option('Iceland - Mobile',0.281);
options[178] = new Option('Iceland',0.044);
options[179] = new Option('India - Mobile',0.029);
options[180] = new Option('India',0.029);
options[181] = new Option('Indonesia',0.079);
options[182] = new Option('Indonesia - Mobile',0.089);
options[183] = new Option('Iran',0.09);
options[184] = new Option('Iran - Mobile',0.106);
options[185] = new Option('Iraq - Mobile',0.108);
options[186] = new Option('Iraq',0.108);
options[187] = new Option('Ireland',0.044);
options[188] = new Option('Ireland - Mobile',0.205);
options[189] = new Option('Israel',0.042);
options[190] = new Option('Israel - Mobile',0.092);
options[191] = new Option('Italy',0.034);
options[192] = new Option('Italy - Mobile',0.149);
options[193] = new Option('Ivory Coast',3);
options[194] = new Option('Ivory Coast - Mobile',3);
options[195] = new Option('Jamaica',0.068);
options[196] = new Option('Jamaica - Mobile',0.201);
options[197] = new Option('Japan',0.049);
options[198] = new Option('Japan - Mobile',0.137);
options[199] = new Option('Jordon - Mobile',0.106);
options[200] = new Option('Jordon',0.049);
options[201] = new Option('Kazakstan - Mobile',0.107);
options[202] = new Option('Kazakstan',0.082);
options[203] = new Option('Kenya',0.09);
options[204] = new Option('Kenya - Mobile',0.124);
options[205] = new Option('Kiribati',0.515);
options[206] = new Option('Kiribati - Mobile',0.515);
options[207] = new Option('Kuwait',0.099);
options[208] = new Option('Kuwait - Mobile',0.103);
options[209] = new Option('Kirghistan',0.098);
options[210] = new Option('Kirghistan - Mobile',0.107);
options[211] = new Option('Laos',0.064);
options[212] = new Option('Laos - Mobile',0.064);
options[213] = new Option('Latvia - Mobile',0.308);
options[214] = new Option('Latvia',0.052);
options[215] = new Option('Lebanon',0.087);
options[216] = new Option('Lebanon - Mobile',0.154);
options[217] = new Option('Lesotho',0.134);
options[218] = new Option('Lesotho - Mobile',0.123);
options[219] = new Option('Liberia',0.233);
options[220] = new Option('Liberia - Mobile',0.206);
options[221] = new Option('Libya - Mobile',0.231);
options[222] = new Option('Libya',0.157);
options[223] = new Option('Liechtenstein - Mobile',0.237);
options[224] = new Option('Liechtenstein',0.064);
options[225] = new Option('Lithuania',0.09);
options[226] = new Option('Lithuania - Mobile',0.159);
options[227] = new Option('Luxembourg',0.042);
options[228] = new Option('Luxembourg - Mobile',0.159);
options[229] = new Option('Macau',0.051);
options[230] = new Option('Macau - Mobile',0.051);
options[231] = new Option('Macedonia - Mobile',0.245);
options[232] = new Option('Macedonia',0.245);
options[233] = new Option('Madagascar',0.248);
options[234] = new Option('Madagascar - Mobile',0.245);
options[235] = new Option('Malawi',0.102);
options[236] = new Option('Malawi - Mobile',0.12);
options[237] = new Option('Malaysia',0.044);
options[238] = new Option('Malaysia - Mobile',0.056);
options[239] = new Option('Maldives - Mobile',0.261);
options[240] = new Option('Maldives',0.139);
options[241] = new Option('Mali',0.226);
options[242] = new Option('Mali - Mobile',0.226);
options[243] = new Option('Malta - Mobile',0.193);
options[244] = new Option('Malta',0.063);
options[245] = new Option('Mariana Island',0.053);
options[246] = new Option('Mariana Island - Mobile',0.053);
options[247] = new Option('Marshall Island',0.221);
options[248] = new Option('Marshall Island - Mobile',0.221);
options[249] = new Option('Martinique - Mobile',0.298);
options[250] = new Option('Martinique',0.048);
options[251] = new Option('Mauritania',0.236);
options[252] = new Option('Mauritania - Mobile',0.236);
options[253] = new Option('Mauritius',0.072);
options[254] = new Option('Mauritius - Mobile',0.072);
options[255] = new Option('Mayotte - Mobile',0.233);
options[256] = new Option('Mayotte',0.144);
options[257] = new Option('Mexico',0.067);
options[258] = new Option('Mexico - Mobile',0.133);
options[259] = new Option('Micronesia',0.174);
options[260] = new Option('Micronesia - Mobile',0.174);
options[261] = new Option('Moldavia - Mobile',0.133);
options[262] = new Option('Moldavia',0.104);
options[263] = new Option('Monaco - Mobile',0.215);
options[264] = new Option('Monaco',0.055);
options[265] = new Option('Mongolia',0.077);
options[266] = new Option('Mongolia - Mobile',0.077);
options[267] = new Option('Montserrat',0.128);
options[268] = new Option('Montserrat - Mobile',0.128);
options[269] = new Option('Morocco',0.279);
options[270] = new Option('Morocco - Mobile',0.279);
options[271] = new Option('Mozambique - Mobile',0.216);
options[272] = new Option('Mozambique',0.08);
options[273] = new Option('Myanmar',0.259);
options[274] = new Option('Myanmar - Mobile',0.259);
options[275] = new Option('Namibia - Mobile',0.171);
options[276] = new Option('Namibia',0.078);
options[277] = new Option('Nepal',0.139);
options[278] = new Option('Nepal - Mobile',0.139);
options[279] = new Option('Netherlands',0.041);
options[280] = new Option('Netherlands - Mobile',0.204);
options[281] = new Option('Netherlands Ant',0.134);
options[282] = new Option('Netherlands Ant - Mobile',0.151);
options[283] = new Option('New Caledonia',0.231);
options[284] = new Option('New Caledonia - Mobile',0.231);
options[285] = new Option('Newzealand - Mobile',0.165);
options[286] = new Option('Newzealand',0.042);
options[287] = new Option('Nicaragua - Mobile',0.19);
options[288] = new Option('Nicaragua',0.119);
options[289] = new Option('Niger - Mobile',0.144);
options[290] = new Option('Niger',0.134);
options[291] = new Option('Nigeria - Mobile',0.12);
options[292] = new Option('Nigeria',0.101);
options[293] = new Option('North Korea',0.517);
options[294] = new Option('North Korea - Mobile',0.517);
options[295] = new Option('Norway',0.042);
options[296] = new Option('Norway - Mobile',0.171);
options[297] = new Option('Oman - Mobile',0.177);
options[298] = new Option('Oman',0.113);
options[299] = new Option('Pakistan',0.069);
options[300] = new Option('Pakistan - Mobile',0.069);
options[301] = new Option('Palau',0.282);
options[302] = new Option('Palau - Mobile',0.282);
options[303] = new Option('Palestine - Mobile',0.162);
options[304] = new Option('Palestine',0.205);
options[305] = new Option('Panama',0.062);
options[306] = new Option('Panama - Mobile',0.119);
options[307] = new Option('Papua New Guinea',0.334);
options[308] = new Option('Papua New Guinea - Mobile',0.334);
options[309] = new Option('Paraguay',0.058);
options[310] = new Option('Paraguay - Mobile',0.092);
options[311] = new Option('Peru',0.054);
options[312] = new Option('Peru - Mobile',0.134);
options[313] = new Option('Philippines',0.109);
options[314] = new Option('Philippines - Mobile',0.139);
options[315] = new Option('Poland',0.042);
options[316] = new Option('Poland - Mobile',0.21);
options[317] = new Option('Portugal',0.034);
options[318] = new Option('Portugal - Mobile',0.109);
options[319] = new Option('Puerto Rico',0.04);
options[320] = new Option('Puerto Rico - Mobile',0.04);
options[321] = new Option('Qatar',0.135);
options[322] = new Option('Qatar - Mobile',0.169);
options[323] = new Option('Reunion Island',0.221);
options[324] = new Option('Reunion Island - Mobile',0.221);
options[325] = new Option('Roumania - Mobile',0.226);
options[326] = new Option('Roumania',0.051);
options[327] = new Option('Russia',0.064);
options[328] = new Option('Russia - Mobile',0.059);
options[329] = new Option('Rwanda',0.132);
options[330] = new Option('Rwanda - Mobile',0.107);
options[331] = new Option('San Marino',0.116);
options[332] = new Option('San Marino - Mobile',0.055);
options[333] = new Option('Sao Tome & Principe',0.869);
options[334] = new Option('Sao Tome & Principe - Mobile',0.62);
options[335] = new Option('Saudi Arabia',0.085);
options[336] = new Option('Saudi Arabia - Mobile',0.121);
options[337] = new Option('Senegal - Mobile',0.201);
options[338] = new Option('Senegal',0.123);
options[339] = new Option('Seychelles - Mobile',0.185);
options[340] = new Option('Seychelles',0.08);
options[341] = new Option('Sierra Leone',0.328);
options[342] = new Option('Sierra Leone - Mobile',0.303);
options[343] = new Option('Singapore',0.029);
options[344] = new Option('Singapore - Mobile',0.039);
options[345] = new Option('Slovakia',0.046);
options[346] = new Option('Slovakia - Mobile',0.195);
options[347] = new Option('Slovenia - Mobile',0.262);
options[348] = new Option('Slovenia',0.062);
options[349] = new Option('Solomon Isl',0.824);
options[350] = new Option('Solomon Isl - Mobile',0.824);
options[351] = new Option('Somalia',0.475);
options[352] = new Option('Somalia - Mobile',0.433);
options[353] = new Option('South Africa',0.057);
options[354] = new Option('South Africa - Mobile',0.142);
options[355] = new Option('South Korea - Mobile',0.053);
options[356] = new Option('South Korea',0.045);
options[357] = new Option('Spain',0.029);
options[358] = new Option('Spain - Mobile',0.109);
options[359] = new Option('Srilanka',0.099);
options[360] = new Option('Srilanka - Mobile',0.109);
options[361] = new Option('St.Helena',0.497);
options[362] = new Option('St. Kitts & Nevis Island - Mobile',0.187);
options[363] = new Option('St. Kitts & Nevis Island',0.187);
options[364] = new Option('St.Lucia W.I. - Mobile',0.185);
options[365] = new Option('St.Lucia W.I.',0.104);
options[366] = new Option('St. Pierre & Miquelon',0.154);
options[367] = new Option('St. Pierre & Miquelon - Mobile',0.154);
options[368] = new Option('St.Vincent - Mobile',0.193);
options[369] = new Option('St.Vincent',0.108);
options[370] = new Option('Sudan - Mobile',0.157);
options[371] = new Option('Sudan',0.154);
options[372] = new Option('Surinam',0.171);
options[373] = new Option('Surinam - Mobile',0.171);
options[374] = new Option('Swaziland - Mobile',0.157);
options[375] = new Option('Swaziland',0.157);
options[376] = new Option('Sweden',0.039);
options[377] = new Option('Sweden - Mobile',0.077);
options[378] = new Option('Switzerland',0.029);
options[379] = new Option('Switzerland - Mobile',0.199);
options[380] = new Option('Syria - Mobile',0.15);
options[381] = new Option('Syria',0.126);
options[382] = new Option('Taiwan',0.041);
options[383] = new Option('Taiwan - Mobile',0.088);
options[384] = new Option('Tajikistan',0.103);
options[385] = new Option('Tajikistan - Mobile',0.103);
options[386] = new Option('Tanzania - Mobile',0.098);
options[387] = new Option('Tanzania',0.095);
options[388] = new Option('Thailand',0.056);
options[389] = new Option('Thailand - Mobile',0.044);
options[390] = new Option('Togo',0.316);
options[391] = new Option('Togo - Mobile',0.318);
options[392] = new Option('Tonga',0.234);
options[393] = new Option('Tonga - Mobile',0.234);
options[394] = new Option('Trinidad - Mobile',0.087);
options[395] = new Option('Trinidad',0.057);
options[396] = new Option('Tunisia - Mobile',0.318);
options[397] = new Option('Tunisia',0.151);
options[398] = new Option('Turkey - Mobile',0.466);
options[399] = new Option('Turkey',0.065);
options[400] = new Option('Turkmenistan',0.096);
options[401] = new Option('Turkmenistan - Mobile',0.096);
options[402] = new Option('Turks  & Caicos - Mobile',0.178);
options[403] = new Option('Turks  & Caicos',0.106);
options[404] = new Option('U S Virgin Island',0.042);
options[405] = new Option('Uganda - Mobile',0.121);
options[406] = new Option('Uganda',0.104);
options[407] = new Option('Ukraine - Mobile',0.111);
options[408] = new Option('Ukraine',0.091);
options[409] = new Option('Uae',0.137);
options[410] = new Option('Uae - Mobile',0.137);
options[411] = new Option('Uruguay - Mobile',0.17);
options[412] = new Option('Uruguay',0.069);
options[413] = new Option('Usa - All',0.029);
options[414] = new Option('Uzbekistan - Mobile',0.08);
options[415] = new Option('Uzbekistan',0.074);
options[416] = new Option('Vanuatu',0.569);
options[417] = new Option('Vanuatu - Mobile',0.569);
options[418] = new Option('Venezuela',0.063);
options[419] = new Option('Venezuela - Mobile',0.149);
options[420] = new Option('Vietnam - Mobile',0.066);
options[421] = new Option('Vietnam',0.06);
options[422] = new Option('Wallis & Futuna',0.988);
options[423] = new Option('Yemen-Ar',0.132);
options[424] = new Option('Yemen-Ar - Mobile',0.132);
options[425] = new Option('Zambia - Mobile',0.12);
options[426] = new Option('Zambia',0.055);
options[427] = new Option('Zimbabwe',0.074);
options[428] = new Option('Zimbabwe - Mobile',0.375);
	return options;
}


