// This array contains the index of rates that should be flagged as new
var new_rates = [23,31,19,160,346,347,362,313,314,315,391,392,435,436];

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


// 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();
});


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.316); 
options[2] = new Option('Afghanistan',0.313); 
options[3] = new Option('Albania - Mobile',0.457); 
options[4] = new Option('Albania',0.316); 
options[5] = new Option('Algeria - Mobile',0.517); 
options[6] = new Option('Algeria',0.517); 
options[7] = new Option('American Samoa - Mobile',0.495); 
options[8] = new Option('American Samoa',0.495); 
options[9] = new Option('Andorra - Mobile',0.457); 
options[10] = new Option('Andorra',0.316); 
options[11] = new Option('Angola - Mobile',0.517); 
options[12] = new Option('Angola',0.517); 
options[13] = new Option('Anguilla - Mobile',0.443); 
options[14] = new Option('Anguilla',0.443); 
options[15] = new Option('Antigua - Mobile',0.443); 
options[16] = new Option('Antigua',0.443); 
options[17] = new Option('Argentina - Mobile',0.153); 
options[18] = new Option('Argentina',0.077); 
options[19] = new Option('Armenia - Mobile',0.457); 
options[20] = new Option('Armenia',0.316); 
options[21] = new Option('Aruba - Mobile',0.443); 
options[22] = new Option('Aruba',0.443); 
options[23] = new Option('Ascension Island - Mobile',1.444); 
options[24] = new Option('Ascension Island',1.444); 
options[25] = new Option('Australia - Mobile',0.149); 
options[26] = new Option('Australia',0.069); 
options[27] = new Option('Austria - Mobile',0.457); 
options[28] = new Option('Austria',0.316); 
options[29] = new Option('Azerbaizan - Mobile',0.457); 
options[30] = new Option('Azerbaizan',0.316); 
options[31] = new Option('Bahamas - Mobile',0.443); 
options[32] = new Option('Bahamas',0.443); 
options[33] = new Option('Bahrain - Mobile',0.116); 
options[34] = new Option('Bahrain',0.121); 
options[35] = new Option('Bangladesh - Mobile',0.084); 
options[36] = new Option('Bangladesh',0.084); 
options[37] = new Option('Barbados - Mobile',0.443); 
options[38] = new Option('Barbados',0.443); 
options[39] = new Option('Belarus - Mobile',0.457); 
options[40] = new Option('Belarus',0.316); 
options[41] = new Option('Belgium - Mobile',0.267); 
options[42] = new Option('Belgium',0.071); 
options[43] = new Option('Belize - Mobile',0.443); 
options[44] = new Option('Belize',0.443); 
options[45] = new Option('Benin - Mobile',0.233); 
options[46] = new Option('Benin',0.273); 
options[47] = new Option('Bermuda - Mobile',0.443); 
options[48] = new Option('Bermuda',0.443); 
options[49] = new Option('Bhutan - Mobile',0.187); 
options[50] = new Option('Bhutan',0.187); 
options[51] = new Option('Bolivia - Mobile',0.443); 
options[52] = new Option('Bolivia',0.443); 
options[53] = new Option('Bosnia & Herzegovina - Mobile',0.457); 
options[54] = new Option('Bosnia & Herzegovina',0.316); 
options[55] = new Option('Botswana - Mobile',0.517); 
options[56] = new Option('Botswana',0.517); 
options[57] = new Option('Brazil - Mobile',0.235); 
options[58] = new Option('Brazil',0.079); 
options[59] = new Option('British Virgin Islands - Mobile',0.443); 
options[60] = new Option('British Virgin Islands',0.443); 
options[61] = new Option('Brunei - Mobile',0.167); 
options[62] = new Option('Brunei',0.167); 
options[63] = new Option('Bulgaria - Mobile',0.457); 
options[64] = new Option('Bulgaria',0.316); 
options[65] = new Option('Burkina Faso - Mobile',0.517); 
options[66] = new Option('Burkina Faso',0.517); 
options[67] = new Option('Burundi - Mobile',0.517); 
options[68] = new Option('Burundi',0.517); 
options[69] = new Option('Cambodia - Mobile',0.167); 
options[70] = new Option('Cambodia',0.167); 
options[71] = new Option('Cameroon - Mobile',0.293); 
options[72] = new Option('Cameroon',0.361); 
options[73] = new Option('Canada - Mobile',0.069); 
options[74] = new Option('Canada',0.069); 
options[75] = new Option('Cape Verde - Mobile',0.517); 
options[76] = new Option('Cape Verde',0.517); 
options[77] = new Option('Cayman Islands - Mobile',0.443); 
options[78] = new Option('Cayman Islands',0.443); 
options[79] = new Option('Central African Republic - Mobile',1.444); 
options[80] = new Option('Central African Republic',1.444); 
options[81] = new Option('Chad - Mobile',0.517); 
options[82] = new Option('Chad',0.517); 
options[83] = new Option('Chile - Mobile',0.443); 
options[84] = new Option('Chile',0.443); 
options[85] = new Option('China - Mobile',0.069); 
options[86] = new Option('China',0.069); 
options[87] = new Option('Colombia - Mobile',0.443); 
options[88] = new Option('Colombia',0.443); 
options[89] = new Option('Comoros - Mobile',0.517); 
options[90] = new Option('Comoros',0.517); 
options[91] = new Option('Congo - Mobile',0.517); 
options[92] = new Option('Congo',0.517); 
options[93] = new Option('Cook Islands - Mobile',1.444); 
options[94] = new Option('Cook Islands',1.444); 
options[95] = new Option('Costa Rica - Mobile',0.443); 
options[96] = new Option('Costa Rica',0.443); 
options[97] = new Option('Croatia - Mobile',0.457); 
options[98] = new Option('Croatia',0.316); 
options[99] = new Option('Cuba - Mobile',1.272); 
options[100] = new Option('Cuba',1.272); 
options[101] = new Option('Cyprus - Mobile',0.457); 
options[102] = new Option('Cyprus',0.316); 
options[103] = new Option('Czech Republic - Mobile',0.457); 
options[104] = new Option('Czech Republic',0.316); 
options[105] = new Option('Denmark - Mobile',0.457); 
options[106] = new Option('Denmark',0.316); 
options[107] = new Option('Diego Garcia - Mobile',1.444); 
options[108] = new Option('Diego Garcia',1.444); 
options[109] = new Option('Djibouti - Mobile',0.517); 
options[110] = new Option('Djibouti',0.517); 
options[111] = new Option('Dominica - Mobile',0.443); 
options[112] = new Option('Dominica',0.443); 
options[113] = new Option('Dominican - Mobile',0.443); 
options[114] = new Option('Dominican',0.443); 
options[115] = new Option('East Timor - Mobile',1.444); 
options[116] = new Option('East Timor',1.444); 
options[117] = new Option('Ecuador - Mobile',0.443); 
options[118] = new Option('Ecuador',0.443); 
options[119] = new Option('Egypt - Mobile',0.158); 
options[120] = new Option('Egypt',0.147); 
options[121] = new Option('El Salvador - Mobile',0.211); 
options[122] = new Option('El Salvador',0.179); 
options[123] = new Option('Equatorial Guinea - Mobile',3.00);
options[124] = new Option('Equatorial Guinea',3.00); 
options[125] = new Option('Eritrea - Mobile',0.517); 
options[126] = new Option('Eritrea',0.517); 
options[127] = new Option('Estonia - Mobile',0.457); 
options[128] = new Option('Estonia',0.316); 
options[129] = new Option('Ethiopia - Mobile',0.361); 
options[130] = new Option('Ethiopia',0.336); 
options[131] = new Option('Falkland Islands - Mobile',1.444); 
options[132] = new Option('Falkland Islands',1.444); 
options[133] = new Option('Faroe - Mobile',0.457); 
options[134] = new Option('Faroe',0.316); 
options[135] = new Option('Fiji - Mobile',0.495); 
options[136] = new Option('Fiji',0.495); 
options[137] = new Option('Finland - Mobile',0.457); 
options[138] = new Option('Finland',0.316); 
options[139] = new Option('France - Mobile',0.169); 
options[140] = new Option('France',0.069); 
options[141] = new Option('French Guiana - Mobile',0.443); 
options[142] = new Option('French Guiana',0.443); 
options[143] = new Option('French Polynesia - Mobile',0.495); 
options[144] = new Option('French Polynesia',0.495); 
options[145] = new Option('Gabon - Mobile',0.517); 
options[146] = new Option('Gabon',0.517); 
options[147] = new Option('Gambia - Mobile',0.517); 
options[148] = new Option('Gambia',0.517); 
options[149] = new Option('Georgia - Mobile',0.457); 
options[150] = new Option('Georgia',0.316); 
options[151] = new Option('Germany - Mobile',0.189); 
options[152] = new Option('Germany',0.069); 
options[153] = new Option('Ghana - Mobile',0.228); 
options[154] = new Option('Ghana',0.118); 
options[155] = new Option('Gibraltar - Mobile',0.457); 
options[156] = new Option('Gibraltar',0.316); 
options[157] = new Option('Greece - Mobile',0.457); 
options[158] = new Option('Greece',0.316); 
options[159] = new Option('Greenland - Mobile',0.695); 
options[160] = new Option('Greenland',0.695); 
options[161] = new Option('Grenada - Mobile',0.443); 
options[162] = new Option('Grenada',0.443); 
options[163] = new Option('Guadeloupe - Mobile',0.443); 
options[164] = new Option('Guadeloupe',0.443); 
options[165] = new Option('Guam',0.495); 
options[166] = new Option('Guam',0.495); 
options[167] = new Option('Guatemala - Mobile',0.173); 
options[168] = new Option('Guatemala',0.177); 
options[169] = new Option('Guinea - Mobile',0.376); 
options[170] = new Option('Guinea Bissau - Mobile',0.623); 
options[171] = new Option('Guinea Bissau',0.528); 
options[172] = new Option('Guinea',0.383); 
options[173] = new Option('Guyana - Mobile',0.443); 
options[174] = new Option('Guyana',0.443); 
options[175] = new Option('Haiti - Mobile',0.443); 
options[176] = new Option('Haiti',0.443); 
options[177] = new Option('Honduras - Mobile',0.443); 
options[178] = new Option('Honduras',0.443); 
options[179] = new Option('Hongkong - Mobile',0.069); 
options[180] = new Option('Hongkong',0.069); 
options[181] = new Option('Hungary - Mobile',0.457); 
options[182] = new Option('Hungary',0.316); 
options[183] = new Option('Iceland - Mobile',0.457); 
options[184] = new Option('Iceland',0.316); 
options[185] = new Option('India - Mobile',0.069); 
options[186] = new Option('India',0.069); 
options[187] = new Option('Indonesia - Mobile',0.135); 
options[188] = new Option('Indonesia',0.12); 
options[189] = new Option('Iran - Mobile',0.165); 
options[190] = new Option('Iran',0.139); 
options[191] = new Option('Iraq - Mobile',0.309); 
options[192] = new Option('Iraq',0.309); 
options[193] = new Option('Ireland - Mobile',0.457); 
options[194] = new Option('Ireland',0.316); 
options[195] = new Option('Israel - Mobile',0.142); 
options[196] = new Option('Israel',0.069); 
options[197] = new Option('Italy - Mobile',0.224); 
options[198] = new Option('Italy',0.068); 
options[199] = new Option('Ivory Coast - Mobile',0.517); 
options[200] = new Option('Ivory Coast',0.517); 
options[201] = new Option('Jamaica - Mobile',0.443); 
options[202] = new Option('Jamaica',0.443); 
options[203] = new Option('Japan - Mobile',0.21); 
options[204] = new Option('Japan',0.08); 
options[205] = new Option('Jordan - Mobile',0.165); 
options[206] = new Option('Jordan',0.079); 
options[207] = new Option('Kazakhstan - Mobile',0.167); 
options[208] = new Option('Kazakhstan',0.167); 
options[209] = new Option('Kenya - Mobile',0.191); 
options[210] = new Option('Kenya',0.139); 
options[211] = new Option('Kiribati - Mobile',1.444); 
options[212] = new Option('Kiribati',1.444); 
options[213] = new Option('Kuwait - Mobile',0.161); 
options[214] = new Option('Kuwait',0.155); 
options[215] = new Option('Kyrgyzstan - Mobile',0.167); 
options[216] = new Option('Kyrgyzstan',0.167); 
options[217] = new Option('Laos - Mobile',0.167); 
options[218] = new Option('Laos',0.167); 
options[219] = new Option('Latvia - Mobile',0.457); 
options[220] = new Option('Latvia',0.316); 
options[221] = new Option('Lebanon - Mobile',0.309); 
options[222] = new Option('Lebanon',0.309); 
options[223] = new Option('Lesotho - Mobile',0.517); 
options[224] = new Option('Lesotho',0.517); 
options[225] = new Option('Liberia - Mobile',0.517); 
options[226] = new Option('Liberia',0.517); 
options[227] = new Option('Libya - Mobile',0.517); 
options[228] = new Option('Libya',0.517); 
options[229] = new Option('Liechtenstein - Mobile',0.457); 
options[230] = new Option('Liechtenstein',0.316); 
options[231] = new Option('Lithuania - Mobile',0.457); 
options[232] = new Option('Lithuania',0.316); 
options[233] = new Option('Luxembourg - Mobile',0.457); 
options[234] = new Option('Luxembourg',0.316); 
options[235] = new Option('Macau - Mobile',0.167); 
options[236] = new Option('Macau',0.167); 
options[237] = new Option('Macedonia - Mobile',0.457); 
options[238] = new Option('Macedonia',0.316); 
options[239] = new Option('Madagascar - Mobile',0.366); 
options[240] = new Option('Madagascar',0.371); 
options[241] = new Option('Malawi - Mobile',0.185); 
options[242] = new Option('Malawi',0.159); 
options[243] = new Option('Malaysia - Mobile',0.089); 
options[244] = new Option('Malaysia',0.071); 
options[245] = new Option('Maldives - Mobile',0.65); 
options[246] = new Option('Maldives',0.60); 
options[247] = new Option('Mali - Mobile',0.339); 
options[248] = new Option('Mali',0.339); 
options[249] = new Option('Malta - Mobile',0.457); 
options[250] = new Option('Malta',0.316); 
options[251] = new Option('Mariana Islands - Mobile',0.495); 
options[252] = new Option('Mariana Islands',0.495); 
options[253] = new Option('Marshall Islands - Mobile',0.495); 
options[254] = new Option('Marshall Islands',0.495); 
options[255] = new Option('Martinique - Mobile',0.443); 
options[256] = new Option('Martinique',0.443); 
options[257] = new Option('Mauritania - Mobile',0.517); 
options[258] = new Option('Mauritania',0.517); 
options[259] = new Option('Mauritius Island - Mobile',0.113); 
options[260] = new Option('Mauritius Island',0.113); 
options[261] = new Option('Mayotte - Mobile',0.517); 
options[262] = new Option('Mayotte',0.517); 
options[263] = new Option('Mexico - Mobile',0.204); 
options[264] = new Option('Mexico',0.105); 
options[265] = new Option('Micronesia - Mobile',0.495); 
options[266] = new Option('Micronesia',0.495); 
options[267] = new Option('Moldova - Mobile',0.457); 
options[268] = new Option('Moldova',0.316); 
options[269] = new Option('Monaco - Mobile',0.457); 
options[270] = new Option('Monaco',0.316); 
options[271] = new Option('Mongolia - Mobile',0.167); 
options[272] = new Option('Mongolia',0.167); 
options[273] = new Option('Montserrat - Mobile',0.443); 
options[274] = new Option('Montserrat',0.443); 
options[275] = new Option('Morocco - Mobile',0.428); 
options[276] = new Option('Morocco',0.428); 
options[277] = new Option('Mozambique - Mobile',0.517); 
options[278] = new Option('Mozambique',0.517); 
options[279] = new Option('Myanmar - Mobile',0.387); 
options[280] = new Option('Myanmar',0.387); 
options[281] = new Option('Namibia - Mobile',0.517); 
options[282] = new Option('Namibia',0.517); 
options[283] = new Option('Nepal - Mobile',0.213); 
options[284] = new Option('Nepal',0.213); 
options[285] = new Option('Netherlands - Mobile',0.307); 
options[286] = new Option('Netherlands Antilles - Mobile',0.443); 
options[287] = new Option('Netherlands Antilles',0.443); 
options[288] = new Option('Netherlands',0.067); 
options[289] = new Option('New Caledonia - Mobile',0.495); 
options[290] = new Option('New Caledonia',0.495); 
options[291] = new Option('New Zealand - Mobile',0.251); 
options[292] = new Option('New Zealand',0.069); 
options[293] = new Option('Nicaragua - Mobile',0.443); 
options[294] = new Option('Nicaragua',0.443); 
options[295] = new Option('Niger - Mobile',0.22); 
options[296] = new Option('Niger',0.206); 
options[297] = new Option('Nigeria - Mobile',0.186); 
options[298] = new Option('Nigeria',0.158); 
options[299] = new Option('North Korea - Mobile',0.761); 
options[300] = new Option('North Korea',0.761); 
options[301] = new Option('Norway - Mobile',0.457); 
options[302] = new Option('Norway',0.316); 
options[303] = new Option('Oman - Mobile',0.268); 
options[304] = new Option('Oman',0.175); 
options[305] = new Option('Pakistan - Mobile',0.059); 
options[306] = new Option('Pakistan',0.059); 
options[307] = new Option('Palau - Mobile',0.495); 
options[308] = new Option('Palau',0.495); 
options[309] = new Option('Palestine - Mobile',0.309); 
options[310] = new Option('Palestine',0.309); 
options[311] = new Option('Panama - Mobile',0.443); 
options[312] = new Option('Panama',0.443); 
options[313] = new Option('Papua New Guinea - Mobile',0.495); 
options[314] = new Option('Papua New Guinea',0.495); 
options[315] = new Option('Paraguay - Mobile',0.443); 
options[316] = new Option('Paraguay',0.443); 
options[317] = new Option('Peru - Mobile',0.443); 
options[318] = new Option('Peru',0.443); 
options[319] = new Option('Philippines - Mobile',0.159); 
options[320] = new Option('Philippines Smart - Mobile',0.159); 
options[321] = new Option('Philippines',0.159); 
options[322] = new Option('Poland - Mobile',0.457); 
options[323] = new Option('Poland',0.316); 
options[324] = new Option('Portugal - Mobile',0.457); 
options[325] = new Option('Portugal',0.316); 
options[326] = new Option('Puerto Rico - Mobile',0.443); 
options[327] = new Option('Puerto Rico',0.443); 
options[328] = new Option('Qatar - Mobile',0.257); 
options[329] = new Option('Qatar',0.207); 
options[330] = new Option('Reunion Island - Mobile',0.517); 
options[331] = new Option('Reunion Island',0.517); 
options[332] = new Option('Romania - Mobile',0.457); 
options[333] = new Option('Romania',0.316); 
options[334] = new Option('Russia - Mobile',0.093); 
options[335] = new Option('Russia',0.1); 
options[336] = new Option('Rwanda - Mobile',0.517); 
options[337] = new Option('Rwanda',0.517); 
options[338] = new Option('San Marino - Mobile',0.457); 
options[339] = new Option('San Marino',0.316); 
options[340] = new Option('Sao Tome & Principe - Mobile',1.444); 
options[341] = new Option('Sao Tome & Principe',1.444); 
options[342] = new Option('Saudi Arabia - Mobile',0.187); 
options[343] = new Option('Saudi Arabia',0.131); 
options[344] = new Option('Senegal - Mobile',0.517); 
options[345] = new Option('Senegal',0.517); 
options[346] = new Option('Serbia - Mobile',0.457); 
options[347] = new Option('Serbia',0.316); 
options[348] = new Option('Seychelles - Mobile',0.517); 
options[349] = new Option('Seychelles',0.517); 
options[350] = new Option('Sierra Leone - Mobile',0.517); 
options[351] = new Option('Sierra Leone',0.517); 
options[352] = new Option('Singapore - Mobile',0.069); 
options[353] = new Option('Singapore',0.069); 
options[354] = new Option('Slovakia - Mobile',0.457); 
options[355] = new Option('Slovakia',0.316); 
options[356] = new Option('Slovenia - Mobile',0.457); 
options[357] = new Option('Slovenia',0.316); 
options[358] = new Option('Solomon Islands - Mobile',1.444); 
options[359] = new Option('Solomon Islands',1.444); 
options[360] = new Option('Somalia - Mobile',1.444); 
options[361] = new Option('Somalia',1.444); 
options[362] = new Option('South Africa - Mobile',0.217); 
options[363] = new Option('South Africa',0.091); 
options[364] = new Option('South Korea - Mobile',0.085); 
options[365] = new Option('South Korea',0.074); 
options[366] = new Option('Spain - Mobile',0.168); 
options[367] = new Option('Spain',0.065); 
options[368] = new Option('Sri Lanka - Mobile',0.207); 
options[369] = new Option('Sri Lanka',0.207); 
options[370] = new Option('St. Helena - Mobile',1.444); 
options[371] = new Option('St. Helena',1.444); 
options[372] = new Option('St. Kitts & Nevis - Mobile',0.443); 
options[373] = new Option('St. Kitts & Nevis',0.443); 
options[374] = new Option('St. Lucia - Mobile',0.443); 
options[375] = new Option('St. Lucia',0.443); 
options[376] = new Option('St. Pierre & Miquelon - Mobile',0.235); 
options[377] = new Option('St. Pierre & Miquelon',0.235); 
options[378] = new Option('St. Vincent & Grenadines - Mobile',0.443); 
options[379] = new Option('St. Vincent & Grenadines',0.443); 
options[380] = new Option('Sudan - Mobile',0.239); 
options[381] = new Option('Sudan',0.235); 
options[382] = new Option('Suriname - Mobile',0.443); 
options[383] = new Option('Suriname',0.443); 
options[384] = new Option('Swaziland - Mobile',0.517); 
options[385] = new Option('Swaziland',0.517); 
options[386] = new Option('Sweden - Mobile',0.12); 
options[387] = new Option('Sweden',0.064); 
options[388] = new Option('Switzerland - Mobile',0.301); 
options[389] = new Option('Switzerland',0.064); 
options[390] = new Option('Syria - Mobile',0.309); 
options[391] = new Option('Syria',0.309); 
options[392] = new Option('Taiwan - Mobile',0.136); 
options[393] = new Option('Taiwan',0.068); 
options[394] = new Option('Tajikistan - Mobile',0.167); 
options[395] = new Option('Tajikistan',0.167); 
options[396] = new Option('Tanzania - Mobile',0.154); 
options[397] = new Option('Tanzania',0.149); 
options[398] = new Option('Thailand - Mobile',0.071); 
options[399] = new Option('Thailand',0.089); 
options[400] = new Option('Togo - Mobile',0.78); 
options[401] = new Option('Togo',0.76); 
options[402] = new Option('Tonga - Mobile',0.495); 
options[403] = new Option('Tonga',0.495); 
options[404] = new Option('Trinidad & Tobago - Mobile',0.443); 
options[405] = new Option('Trinidad & Tobago',0.443); 
options[406] = new Option('Tunisia - Mobile',0.517); 
options[407] = new Option('Tunisia',0.517); 
options[408] = new Option('Turkey - Mobile',0.687); 
options[409] = new Option('Turkey',0.103); 
options[410] = new Option('Turkmenistan - Mobile',0.167); 
options[411] = new Option('Turkmenistan',0.167); 
options[412] = new Option('Turks & Caicos - Mobile',0.443); 
options[413] = new Option('Turks & Caicos',0.443); 
options[414] = new Option('U.S. Virgin Islands',0.443); 
options[415] = new Option('Uae - Mobile',0.21); 
options[416] = new Option('Uae',0.21); 
options[417] = new Option('Uganda - Mobile',0.187); 
options[418] = new Option('Uganda',0.162); 
options[419] = new Option('Uk - Mobile',0.199); 
options[420] = new Option('Uk',0.069); 
options[421] = new Option('Ukraine - Mobile',0.457); 
options[422] = new Option('Ukraine',0.316); 
options[423] = new Option('Uruguay - Mobile',0.443); 
options[424] = new Option('Uruguay',0.443); 
options[425] = new Option('Uzbekistan - Mobile',0.167); 
options[426] = new Option('Uzbekistan',0.167); 
options[427] = new Option('Vanuatu - Mobile',1.444); 
options[428] = new Option('Vanuatu',1.444); 
options[429] = new Option('Venezuela - Mobile',0.443); 
options[430] = new Option('Venezuela',0.443); 
options[431] = new Option('Vietnam - Mobile',0.167); 
options[432] = new Option('Vietnam',0.167); 
options[433] = new Option('Wallis & Futuna',1.444); 
options[434] = new Option('Yemen (Arab Republic) - Mobile',0.309); 
options[435] = new Option('Yemen (Arab Republic)',0.309); 
options[436] = new Option('Zambia - Mobile',0.186); 
options[437] = new Option('Zambia',0.088); 
options[438] = new Option('Zimbabwe - Mobile',0.554);
options[439] = new Option('Zimbabwe',0.115);                                 
    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.307); 
options[2] = new Option('Afghanistan',0.305); 
options[3] = new Option('Albania - Mobile',0.448); 
options[4] = new Option('Albania',0.307); 
options[5] = new Option('Algeria - Mobile',0.508); 
options[6] = new Option('Algeria',0.508); 
options[7] = new Option('American Samoa - Mobile',0.486); 
options[8] = new Option('American Samoa',0.486); 
options[9] = new Option('Andorra - Mobile',0.448); 
options[10] = new Option('Andorra',0.307); 
options[11] = new Option('Angola - Mobile',0.508); 
options[12] = new Option('Angola',0.508); 
options[13] = new Option('Anguilla - Mobile',0.434); 
options[14] = new Option('Anguilla',0.434); 
options[15] = new Option('Antigua - Mobile',0.434); 
options[16] = new Option('Antigua',0.434); 
options[17] = new Option('Argentina - Mobile',0.144); 
options[18] = new Option('Argentina',0.07); 
options[19] = new Option('Armenia - Mobile',0.448); 
options[20] = new Option('Armenia',0.307); 
options[21] = new Option('Aruba - Mobile',0.434); 
options[22] = new Option('Aruba',0.434); 
options[23] = new Option('Ascension Island - Mobile',1.435); 
options[24] = new Option('Ascension Island',1.435); 
options[25] = new Option('Australia - Mobile',0.139); 
options[26] = new Option('Australia',0.058); 
options[27] = new Option('Austria - Mobile',0.448); 
options[28] = new Option('Austria',0.307); 
options[29] = new Option('Azerbaizan - Mobile',0.448); 
options[30] = new Option('Azerbaizan',0.307); 
options[31] = new Option('Bahamas - Mobile',0.434); 
options[32] = new Option('Bahamas',0.434); 
options[33] = new Option('Bahrain - Mobile',0.11); 
options[34] = new Option('Bahrain',0.115); 
options[35] = new Option('Bangladesh - Mobile',0.079); 
options[36] = new Option('Bangladesh',0.079); 
options[37] = new Option('Barbados - Mobile',0.434); 
options[38] = new Option('Barbados',0.434); 
options[39] = new Option('Belarus - Mobile',0.448); 
options[40] = new Option('Belarus',0.307); 
options[41] = new Option('Belgium - Mobile',0.258); 
options[42] = new Option('Belgium',0.065); 
options[43] = new Option('Belize - Mobile',0.434); 
options[44] = new Option('Belize',0.434); 
options[45] = new Option('Benin - Mobile',0.225); 
options[46] = new Option('Benin',0.264); 
options[47] = new Option('Bermuda - Mobile',0.434); 
options[48] = new Option('Bermuda',0.434); 
options[49] = new Option('Bhutan - Mobile',0.178); 
options[50] = new Option('Bhutan',0.178); 
options[51] = new Option('Bolivia - Mobile',0.434); 
options[52] = new Option('Bolivia',0.434); 
options[53] = new Option('Bosnia & Herzegovina - Mobile',0.448); 
options[54] = new Option('Bosnia & Herzegovina',0.307); 
options[55] = new Option('Botswana - Mobile',0.508); 
options[56] = new Option('Botswana',0.508); 
options[57] = new Option('Brazil - Mobile',0.226); 
options[58] = new Option('Brazil',0.073); 
options[59] = new Option('British Virgin Islands - Mobile',0.434); 
options[60] = new Option('British Virgin Islands',0.434); 
options[61] = new Option('Brunei - Mobile',0.158); 
options[62] = new Option('Brunei',0.158); 
options[63] = new Option('Bulgaria - Mobile',0.448); 
options[64] = new Option('Bulgaria',0.307); 
options[65] = new Option('Burkina Faso - Mobile',0.508); 
options[66] = new Option('Burkina Faso',0.508); 
options[67] = new Option('Burundi - Mobile',0.508); 
options[68] = new Option('Burundi',0.508); 
options[69] = new Option('Cambodia - Mobile',0.158); 
options[70] = new Option('Cambodia',0.158); 
options[71] = new Option('Cameroon - Mobile',0.285); 
options[72] = new Option('Cameroon',0.352); 
options[73] = new Option('Canada - Mobile',0.058); 
options[74] = new Option('Canada',0.058); 
options[75] = new Option('Cape Verde - Mobile',0.508); 
options[76] = new Option('Cape Verde',0.508); 
options[77] = new Option('Cayman Islands - Mobile',0.434); 
options[78] = new Option('Cayman Islands',0.434); 
options[79] = new Option('Central African Republic - Mobile',1.435); 
options[80] = new Option('Central African Republic',1.435); 
options[81] = new Option('Chad - Mobile',0.508); 
options[82] = new Option('Chad',0.508); 
options[83] = new Option('Chile - Mobile',0.434); 
options[84] = new Option('Chile',0.434); 
options[85] = new Option('China - Mobile',0.058); 
options[86] = new Option('China',0.058); 
options[87] = new Option('Colombia - Mobile',0.434); 
options[88] = new Option('Colombia',0.434); 
options[89] = new Option('Comoros - Mobile',0.508); 
options[90] = new Option('Comoros',0.508); 
options[91] = new Option('Congo - Mobile',0.508); 
options[92] = new Option('Congo',0.508); 
options[93] = new Option('Cook Islands - Mobile',1.435); 
options[94] = new Option('Cook Islands',1.435); 
options[95] = new Option('Costa Rica - Mobile',0.434); 
options[96] = new Option('Costa Rica',0.434); 
options[97] = new Option('Croatia - Mobile',0.448); 
options[98] = new Option('Croatia',0.307); 
options[99] = new Option('Cuba - Mobile',1.263); 
options[100] = new Option('Cuba',1.263); 
options[101] = new Option('Cyprus - Mobile',0.448); 
options[102] = new Option('Cyprus',0.307); 
options[103] = new Option('Czech Republic - Mobile',0.448); 
options[104] = new Option('Czech Republic',0.307); 
options[105] = new Option('Denmark - Mobile',0.448); 
options[106] = new Option('Denmark',0.307); 
options[107] = new Option('Diego Garcia - Mobile',1.435); 
options[108] = new Option('Diego Garcia',1.435); 
options[109] = new Option('Djibouti - Mobile',0.508); 
options[110] = new Option('Djibouti',0.508); 
options[111] = new Option('Dominica - Mobile',0.434); 
options[112] = new Option('Dominica',0.434); 
options[113] = new Option('Dominican - Mobile',0.434); 
options[114] = new Option('Dominican',0.434); 
options[115] = new Option('East Timor - Mobile',1.435); 
options[116] = new Option('East Timor',1.435); 
options[117] = new Option('Ecuador - Mobile',0.434); 
options[118] = new Option('Ecuador',0.434); 
options[119] = new Option('Egypt - Mobile',0.149); 
options[120] = new Option('Egypt',0.139); 
options[121] = new Option('El Salvador - Mobile',0.202); 
options[122] = new Option('El Salvador',0.17); 
options[123] = new Option('Equatorial Guinea - Mobile',3.00); 
options[124] = new Option('Equatorial Guinea',3.00); 
options[125] = new Option('Eritrea - Mobile',0.508); 
options[126] = new Option('Eritrea',0.508); 
options[127] = new Option('Estonia - Mobile',0.448); 
options[128] = new Option('Estonia',0.307); 
options[129] = new Option('Ethiopia - Mobile',0.352); 
options[130] = new Option('Ethiopia',0.327); 
options[131] = new Option('Falkland Islands - Mobile',1.435); 
options[132] = new Option('Falkland Islands',1.435); 
options[133] = new Option('Faroe - Mobile',0.448); 
options[134] = new Option('Faroe',0.307); 
options[135] = new Option('Fiji - Mobile',0.486); 
options[136] = new Option('Fiji',0.486); 
options[137] = new Option('Finland - Mobile',0.448); 
options[138] = new Option('Finland',0.307); 
options[139] = new Option('France - Mobile',0.159); 
options[140] = new Option('France',0.058); 
options[141] = new Option('French Guiana - Mobile',0.434); 
options[142] = new Option('French Guiana',0.434); 
options[143] = new Option('French Polynesia - Mobile',0.486); 
options[144] = new Option('French Polynesia',0.486); 
options[145] = new Option('Gabon - Mobile',0.508); 
options[146] = new Option('Gabon',0.508); 
options[147] = new Option('Gambia - Mobile',0.508); 
options[148] = new Option('Gambia',0.508); 
options[149] = new Option('Georgia - Mobile',0.448); 
options[150] = new Option('Georgia',0.307); 
options[151] = new Option('Germany - Mobile',0.189); 
options[152] = new Option('Germany',0.058); 
options[153] = new Option('Ghana - Mobile',0.219); 
options[154] = new Option('Ghana',0.112); 
options[155] = new Option('Gibraltar - Mobile',0.448); 
options[156] = new Option('Gibraltar',0.307); 
options[157] = new Option('Greece - Mobile',0.448); 
options[158] = new Option('Greece',0.307); 
options[159] = new Option('Greenland - Mobile',0.686); 
options[160] = new Option('Greenland',0.686); 
options[161] = new Option('Grenada - Mobile',0.434); 
options[162] = new Option('Grenada',0.434); 
options[163] = new Option('Guadeloupe - Mobile',0.434); 
options[164] = new Option('Guadeloupe',0.434); 
options[165] = new Option('Guam',0.486); 
options[166] = new Option('Guam',0.486); 
options[167] = new Option('Guatemala - Mobile',0.164); 
options[168] = new Option('Guatemala',0.168); 
options[169] = new Option('Guinea - Mobile',0.367); 
options[170] = new Option('Guinea Bissau - Mobile',0.614); 
options[171] = new Option('Guinea Bissau',0.519); 
options[172] = new Option('Guinea',0.374); 
options[173] = new Option('Guyana - Mobile',0.434); 
options[174] = new Option('Guyana',0.434); 
options[175] = new Option('Haiti - Mobile',0.434); 
options[176] = new Option('Haiti',0.434); 
options[177] = new Option('Honduras - Mobile',0.434); 
options[178] = new Option('Honduras',0.434); 
options[179] = new Option('Hongkong - Mobile',0.058); 
options[180] = new Option('Hongkong',0.058); 
options[181] = new Option('Hungary - Mobile',0.448); 
options[182] = new Option('Hungary',0.307); 
options[183] = new Option('Iceland - Mobile',0.448); 
options[184] = new Option('Iceland',0.307); 
options[185] = new Option('India - Mobile',0.058); 
options[186] = new Option('India',0.058); 
options[187] = new Option('Indonesia - Mobile',0.129); 
options[188] = new Option('Indonesia',0.114); 
options[189] = new Option('Iran - Mobile',0.156); 
options[190] = new Option('Iran',0.133); 
options[191] = new Option('Iraq - Mobile',0.3); 
options[192] = new Option('Iraq',0.3); 
options[193] = new Option('Ireland - Mobile',0.448); 
options[194] = new Option('Ireland',0.307); 
options[195] = new Option('Israel - Mobile',0.135); 
options[196] = new Option('Israel',0.062); 
options[197] = new Option('Italy - Mobile',0.215); 
options[198] = new Option('Italy',0.061); 
options[199] = new Option('Ivory Coast - Mobile',0.508); 
options[200] = new Option('Ivory Coast',0.508); 
options[201] = new Option('Jamaica - Mobile',0.434); 
options[202] = new Option('Jamaica',0.434); 
options[203] = new Option('Japan - Mobile',0.201); 
options[204] = new Option('Japan',0.073); 
options[205] = new Option('Jordan - Mobile',0.156); 
options[206] = new Option('Jordan',0.072); 
options[207] = new Option('Kazakhstan - Mobile',0.158); 
options[208] = new Option('Kazakhstan',0.158); 
options[209] = new Option('Kenya - Mobile',0.182); 
options[210] = new Option('Kenya',0.132); 
options[211] = new Option('Kiribati - Mobile',1.435); 
options[212] = new Option('Kiribati',1.435); 
options[213] = new Option('Kuwait - Mobile',0.152); 
options[214] = new Option('Kuwait',0.146); 
options[215] = new Option('Kyrgyzstan - Mobile',0.158); 
options[216] = new Option('Kyrgyzstan',0.158); 
options[217] = new Option('Laos - Mobile',0.158); 
options[218] = new Option('Laos',0.158); 
options[219] = new Option('Latvia - Mobile',0.448); 
options[220] = new Option('Latvia',0.307); 
options[221] = new Option('Lebanon - Mobile',0.3); 
options[222] = new Option('Lebanon',0.3); 
options[223] = new Option('Lesotho - Mobile',0.508); 
options[224] = new Option('Lesotho',0.508); 
options[225] = new Option('Liberia - Mobile',0.508); 
options[226] = new Option('Liberia',0.508); 
options[227] = new Option('Libya - Mobile',0.508); 
options[228] = new Option('Libya',0.508); 
options[229] = new Option('Liechtenstein - Mobile',0.448); 
options[230] = new Option('Liechtenstein',0.307); 
options[231] = new Option('Lithuania - Mobile',0.448); 
options[232] = new Option('Lithuania',0.307); 
options[233] = new Option('Luxembourg - Mobile',0.448); 
options[234] = new Option('Luxembourg',0.307); 
options[235] = new Option('Macau - Mobile',0.158); 
options[236] = new Option('Macau',0.158); 
options[237] = new Option('Macedonia - Mobile',0.448); 
options[238] = new Option('Macedonia',0.307); 
options[239] = new Option('Madagascar - Mobile',0.357); 
options[240] = new Option('Madagascar',0.362); 
options[241] = new Option('Malawi - Mobile',0.177); 
options[242] = new Option('Malawi',0.15); 
options[243] = new Option('Malaysia - Mobile',0.083); 
options[244] = new Option('Malaysia',0.065); 
options[245] = new Option('Maldives - Mobile',0.64); 
options[246] = new Option('Maldives',0.59); 
options[247] = new Option('Mali - Mobile',0.33); 
options[248] = new Option('Mali',0.33); 
options[249] = new Option('Malta - Mobile',0.448); 
options[250] = new Option('Malta',0.307); 
options[251] = new Option('Mariana Islands - Mobile',0.486); 
options[252] = new Option('Mariana Islands',0.486); 
options[253] = new Option('Marshall Islands - Mobile',0.486); 
options[254] = new Option('Marshall Islands',0.486); 
options[255] = new Option('Martinique - Mobile',0.434); 
options[256] = new Option('Martinique',0.434); 
options[257] = new Option('Mauritania - Mobile',0.508); 
options[258] = new Option('Mauritania',0.508); 
options[259] = new Option('Mauritius Island - Mobile',0.107); 
options[260] = new Option('Mauritius Island',0.107); 
options[261] = new Option('Mayotte - Mobile',0.508); 
options[262] = new Option('Mayotte',0.508); 
options[263] = new Option('Mexico - Mobile',0.196); 
options[264] = new Option('Mexico',0.099); 
options[265] = new Option('Micronesia - Mobile',0.486); 
options[266] = new Option('Micronesia',0.486); 
options[267] = new Option('Moldova - Mobile',0.448); 
options[268] = new Option('Moldova',0.307); 
options[269] = new Option('Monaco - Mobile',0.448); 
options[270] = new Option('Monaco',0.307); 
options[271] = new Option('Mongolia - Mobile',0.158); 
options[272] = new Option('Mongolia',0.158); 
options[273] = new Option('Montserrat - Mobile',0.434); 
options[274] = new Option('Montserrat',0.434); 
options[275] = new Option('Morocco - Mobile',0.419); 
options[276] = new Option('Morocco',0.099); 
options[277] = new Option('Mozambique - Mobile',0.508); 
options[278] = new Option('Mozambique',0.508); 
options[279] = new Option('Myanmar - Mobile',0.378); 
options[280] = new Option('Myanmar',0.378); 
options[281] = new Option('Namibia - Mobile',0.508); 
options[282] = new Option('Namibia',0.508); 
options[283] = new Option('Nepal - Mobile',0.204); 
options[284] = new Option('Nepal',0.204); 
options[285] = new Option('Netherlands - Mobile',0.298); 
options[286] = new Option('Netherlands Antilles - Mobile',0.434); 
options[287] = new Option('Netherlands Antilles',0.434); 
options[288] = new Option('Netherlands',0.061); 
options[289] = new Option('New Caledonia - Mobile',0.486); 
options[290] = new Option('New Caledonia',0.486); 
options[291] = new Option('New Zealand - Mobile',0.242); 
options[292] = new Option('New Zealand',0.062); 
options[293] = new Option('Nicaragua - Mobile',0.434); 
options[294] = new Option('Nicaragua',0.434); 
options[295] = new Option('Niger - Mobile',0.211); 
options[296] = new Option('Niger',0.197); 
options[297] = new Option('Nigeria - Mobile',0.177); 
options[298] = new Option('Nigeria',0.149); 
options[299] = new Option('North Korea - Mobile',0.752); 
options[300] = new Option('North Korea',0.752); 
options[301] = new Option('Norway - Mobile',0.448); 
options[302] = new Option('Norway',0.307); 
options[303] = new Option('Oman - Mobile',0.259); 
options[304] = new Option('Oman',0.167); 
options[305] = new Option('Pakistan - Mobile',0.051); 
options[306] = new Option('Pakistan',0.051); 
options[307] = new Option('Palau - Mobile',0.486); 
options[308] = new Option('Palau',0.486); 
options[309] = new Option('Palestine - Mobile',0.3); 
options[310] = new Option('Palestine',0.3); 
options[311] = new Option('Panama - Mobile',0.434); 
options[312] = new Option('Panama',0.434); 
options[313] = new Option('Papua New Guinea - Mobile',0.486); 
options[314] = new Option('Papua New Guinea',0.486); 
options[315] = new Option('Paraguay - Mobile',0.434); 
options[316] = new Option('Paraguay',0.434); 
options[317] = new Option('Peru - Mobile',0.434); 
options[318] = new Option('Peru',0.434); 
options[319] = new Option('Philippines - Mobile',0.151); 
options[320] = new Option('Philippines Smart - Mobile',0.139); 
options[321] = new Option('Philippines',0.151); 
options[322] = new Option('Poland - Mobile',0.448); 
options[323] = new Option('Poland',0.307); 
options[324] = new Option('Portugal - Mobile',0.448); 
options[325] = new Option('Portugal',0.307); 
options[326] = new Option('Puerto Rico - Mobile',0.434); 
options[327] = new Option('Puerto Rico',0.434); 
options[328] = new Option('Qatar - Mobile',0.248); 
options[329] = new Option('Qatar',0.198); 
options[330] = new Option('Reunion Island - Mobile',0.508); 
options[331] = new Option('Reunion Island',0.508); 
options[332] = new Option('Romania - Mobile',0.448); 
options[333] = new Option('Romania',0.307); 
options[334] = new Option('Russia - Mobile',0.087); 
options[335] = new Option('Russia',0.094); 
options[336] = new Option('Rwanda - Mobile',0.508); 
options[337] = new Option('Rwanda',0.508); 
options[338] = new Option('San Marino - Mobile',0.448); 
options[339] = new Option('San Marino',0.307); 
options[340] = new Option('Sao Tome & Principe - Mobile',1.435); 
options[341] = new Option('Sao Tome & Principe',1.435); 
options[342] = new Option('Saudi Arabia - Mobile',0.178); 
options[343] = new Option('Saudi Arabia',0.125); 
options[344] = new Option('Senegal - Mobile',0.508); 
options[345] = new Option('Senegal',0.508); 
options[346] = new Option('Serbia - Mobile',0.448); 
options[347] = new Option('Serbia',0.307); 
options[348] = new Option('Seychelles - Mobile',0.508); 
options[349] = new Option('Seychelles',0.508); 
options[350] = new Option('Sierra Leone - Mobile',0.508); 
options[351] = new Option('Sierra Leone',0.508); 
options[352] = new Option('Singapore - Mobile',0.058); 
options[353] = new Option('Singapore',0.058); 
options[354] = new Option('Slovakia - Mobile',0.448); 
options[355] = new Option('Slovakia',0.307); 
options[356] = new Option('Slovenia - Mobile',0.448); 
options[357] = new Option('Slovenia',0.307); 
options[358] = new Option('Solomon Islands - Mobile',1.435); 
options[359] = new Option('Solomon Islands',1.435); 
options[360] = new Option('Somalia - Mobile',1.435); 
options[361] = new Option('Somalia',1.435); 
options[362] = new Option('South Africa - Mobile',0.208); 
options[363] = new Option('South Africa',0.085); 
options[364] = new Option('South Korea - Mobile',0.079); 
options[365] = new Option('South Korea',0.068); 
options[366] = new Option('Spain - Mobile',0.159); 
options[367] = new Option('Spain',0.059); 
options[368] = new Option('Sri Lanka - Mobile',0.201); 
options[369] = new Option('Sri Lanka',0.201); 
options[370] = new Option('St. Helena - Mobile',1.435); 
options[371] = new Option('St. Helena',1.435); 
options[372] = new Option('St. Kitts & Nevis - Mobile',0.434); 
options[373] = new Option('St. Kitts & Nevis',0.434); 
options[374] = new Option('St. Lucia - Mobile',0.434); 
options[375] = new Option('St. Lucia',0.434); 
options[376] = new Option('St. Pierre & Miquelon - Mobile',0.226); 
options[377] = new Option('St. Pierre & Miquelon',0.226); 
options[378] = new Option('St. Vincent & Grenadines - Mobile',0.434); 
options[379] = new Option('St. Vincent & Grenadines',0.434); 
options[380] = new Option('Sudan - Mobile',0.23); 
options[381] = new Option('Sudan',0.226); 
options[382] = new Option('Suriname - Mobile',0.434); 
options[383] = new Option('Suriname',0.434); 
options[384] = new Option('Swaziland - Mobile',0.508); 
options[385] = new Option('Swaziland',0.508); 
options[386] = new Option('Sweden - Mobile',0.114); 
options[387] = new Option('Sweden',0.058); 
options[388] = new Option('Switzerland - Mobile',0.292); 
options[389] = new Option('Switzerland',0.058); 
options[390] = new Option('Syria - Mobile',0.3); 
options[391] = new Option('Syria',0.3); 
options[392] = new Option('Taiwan - Mobile',0.13); 
options[393] = new Option('Taiwan',0.062); 
options[394] = new Option('Tajikistan - Mobile',0.158); 
options[395] = new Option('Tajikistan',0.158); 
options[396] = new Option('Tanzania - Mobile',0.145); 
options[397] = new Option('Tanzania',0.14); 
options[398] = new Option('Thailand - Mobile',0.065); 
options[399] = new Option('Thailand',0.083); 
options[400] = new Option('Togo - Mobile',0.78); 
options[401] = new Option('Togo',0.76); 
options[402] = new Option('Tonga - Mobile',0.486); 
options[403] = new Option('Tonga',0.486); 
options[404] = new Option('Trinidad & Tobago - Mobile',0.434); 
options[405] = new Option('Trinidad & Tobago',0.434); 
options[406] = new Option('Tunisia - Mobile',0.508); 
options[407] = new Option('Tunisia',0.508); 
options[408] = new Option('Turkey - Mobile',0.678); 
options[409] = new Option('Turkey',0.096); 
options[410] = new Option('Turkmenistan - Mobile',0.158); 
options[411] = new Option('Turkmenistan',0.158); 
options[412] = new Option('Turks & Caicos - Mobile',0.434); 
options[413] = new Option('Turks & Caicos',0.434); 
options[414] = new Option('U.S. Virgin Islands',0.434); 
options[415] = new Option('Uae - Mobile',0.201); 
options[416] = new Option('Uae',0.201); 
options[417] = new Option('Uganda - Mobile',0.178); 
options[418] = new Option('Uganda',0.153); 
options[419] = new Option('Uk - Mobile',0.189); 
options[420] = new Option('Uk',0.058); 
options[421] = new Option('Ukraine - Mobile',0.448); 
options[422] = new Option('Ukraine',0.307); 
options[423] = new Option('Uruguay - Mobile',0.434); 
options[424] = new Option('Uruguay',0.434); 
options[425] = new Option('Uzbekistan - Mobile',0.158); 
options[426] = new Option('Uzbekistan',0.158); 
options[427] = new Option('Vanuatu - Mobile',1.435); 
options[428] = new Option('Vanuatu',1.435); 
options[429] = new Option('Venezuela - Mobile',0.434); 
options[430] = new Option('Venezuela',0.434); 
options[431] = new Option('Vietnam - Mobile',0.158); 
options[432] = new Option('Vietnam',0.158); 
options[433] = new Option('Wallis & Futuna',1.435); 
options[434] = new Option('Yemen (Arab Republic) - Mobile',0.3); 
options[435] = new Option('Yemen (Arab Republic)',0.3); 
options[436] = new Option('Zambia - Mobile',0.177); 
options[437] = new Option('Zambia',0.081); 
options[438] = new Option('Zimbabwe - Mobile',0.546); 
options[439] = new Option('Zimbabwe',0.109); 
return options;
}


