function poisk(){
	
	function choseSfera(event,id){
		$('#'+id).remove();
		$("body").append('<div id="'+id+'"></div>');
		
		$('#'+id).transformToWindow({title:"Выбор профессии", width: 740, height: 285, left: event.pageX+"px", top: event.pageY+"px"});
		
		$('#'+id+'.windowContent').html('<div style="padding: 100px 0px 0px 330px"><img src="/img/window/ajax_loader.gif"/></div>');
		$('#'+id).css("display", "block");
		
		$('#'+id+' .windowContent').load('/modules/chose_sfera.php', function(){
			addTreeEventListeners('.dTree');
			
			$('#'+id+' .chose').click(function(){
				//alert('ura');
				if($('#'+id+' .dTree .selectnode').length>0){
					$("#sfera_"+id+" option[value="+$('#'+id+' .dTree .selectnode').attr('id').split('sfera_')[1]+"]").attr("selected", "selected");
					$('#'+id).remove();
				}
				return false;
			});
		});
		
		return false;
	}
	
	function choseLocation(event){
		$('#choseLocationWindow').remove();
		$("body").append('<div id="choseLocationWindow"></div>');
		
		$('#choseLocationWindow').transformToWindow({title:"Выбор местоположения", width: 740, height: 285, left: event.pageX+"px", top: event.pageY+"px"});
		
		$('#choseLocationWindow .windowContent').html('<div style="padding: 100px 0px 0px 330px"><img src="/img/window/ajax_loader.gif"/></div>');
		$('#choseLocationWindow').css("display", "block");
		
		$('#choseLocationWindow .windowContent').load('/modules/chose_location.php', function(){
			addTreeEventListeners('.dTree');
			
			$('#choseLocationWindow .chose').click(function(){
				if($('#choseLocationWindow .dTree .selectnode').length>0){
					$("#location option[value="+$('#choseLocationWindow .dTree .selectnode').attr('id').split('location_')[1]+"]").attr("selected", "selected");
					$('#choseLocationWindow').remove();
				}
				return false;
			});
		});
		
		return false;
	}
	
	function choseContextLocation(event){
		$('#choseLocationWindow').remove();
		$("body").append('<div id="choseLocationWindow"></div>');
		
		$('#choseLocationWindow').transformToWindow({title:"Выбор местоположения", width: 740, height: 285, left: event.pageX+"px", top: event.pageY+"px"});
		
		$('#choseLocationWindow .windowContent').html('<div style="padding: 100px 0px 0px 330px"><img src="/img/window/ajax_loader.gif"/></div>');
		$('#choseLocationWindow').css("display", "block");
		
		$('#choseLocationWindow .windowContent').load('/modules/chose_location.php', function(){
			addTreeEventListeners('.dTree');
			
			$('#choseLocationWindow .chose').click(function(){
				if($('#choseLocationWindow .dTree .selectnode').length>0){
					//$('#choseLocationWindow .dTree .selectnode').attr('id').split('location_')[1]);
					$('#autocomplite').val($('#choseLocationWindow .dTree .selectnode').text());
					$('#choseLocationWindow').remove();
				}
				return false;
			});
		});
		return false;
	}
	
	$('#choseSfera').click(function(event){
		choseSfera(event, "choseSferaWindow");
	});
	
	$('#choseLocation').click(choseLocation);

	$('#freePoskSubmit').click(function(){
		if($('#fraza').attr('value')=='Фраза поиска...' || $('#fraza').attr('value')==undefined){
			$('#fraza').attr('value', "");
		}
		//return false;
	});
	
	$('#fraza').click(function(){
		$(this).attr("value", "");
		return false;
	});
	
	$('#contextLocation').click(function(e){
		choseContextLocation(e);
		return false;
	});
}
