
//var ourCountries = [100,25,3,124,146,37,70,46,50,114,103,75,71,120,80,158,1,66,122,84,81,85,87,82,45,2,89,74,90,34,118,11,51,49,31,96,60,140,43,59,26,141,64,152,22,62,58,36,35,68,16,21,93,79,86,52,77,67,76,4,53,38,78,15,42,17,23,119,145,9,40,135];

var ourCountries = [1,2,3,4,8,9,11,14,15,16,17,19,20,22,23,24,25,26,28,31,34,35,36,37,38,39,40,42,44,45,46,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,68,69,70,71,73,74,75,76,77,78,79,80,81,82,84,85,86,87,89,90,93,96,100,103,107,109,110,113,114,117,118,119,120,122,123,124,125,126,127,128,129,130,132,133,134,135,136,137,139,141,142,143,144,145,146,147,148,149,150,151,152,153,155,156,157,158,159,160,161,162,163,164,166,167,168,169,174,178,180,183,184,187,189,192,193,194,195,197,200,204,205,206,208,209,210,212,213,217,219,220,222,242,247,252,257,260,261,269,275];

var noOurCountries = [50, 49, 23, 9, 41, 10, 15, 26, 83, 7, 35, 82, 46, 36, 43, 14];

//83, 12, 21, 32, 30, 6, 47, 72, 116, 41, 27, 7, 29, 43, 140,67
var smallform_handler = 'http://www.atlastour.ru/handler/tourindexSearchHandler.php';

function tourindexCountryHandler(el){
	var found = false;
	for(co in ourCountries) {
	//	
		if(el.options[el.selectedIndex].value == ourCountries[co]) {
			found = true;
			break;
		}
	}
	
	if(found){
		window.location.href = "http://www.atlastour.ru/handler/tourindexSearchHandler.php?co="+el.options[el.selectedIndex].value;
	}else{
		co_onchange();
	}
}


function tourindex2CountryHandler(v){
	var found = false;
	for(co in noOurCountries) {
	//	
		if(v == noOurCountries[co]) {
			found = true;
			break;
		}
	}
	
	if(found){
		window.location.href = "http://www.atlastour.ru/handler/tourindexSearchHandler.php?co="+v+"&red=1";
		return false;
	}else{
	//	window.location.href = "http://www.atlastour.ru/searchtours/?co="+v;
	//	return false;
	}
}



function co_onchange_smallform(el) {
	tourindexCountryHandler(el);
}

function co_onchange_bigform(el){
	tourindexCountryHandler(el);
}

