
	function quickSearchSuccess(res){
		
		if( !res.places || !res.places.found_rows  || res.places.found_rows._ == 0){
		
			new lightBox({
				'title': '',
				'content':  res.html 
			}).show();
		
		}
		else if( res.places.found_rows._ == "1" ) {
			new Hash(res.places).each( function(place){
				document.body.empty();
				window.location.href = '/mesto' + place.id + '?via=quick_review#create_review';
				exit;
			});
		}
		else{
			
			new lightBox({
				'title': 'Мы нашли несколько мест',
				'content':  res.html
			}).show();
			
		}
		
		
	}
	
	
	
