function load_category_price( searchwords, word_id, firm_id, section_id, content_section, show_section, label_name, is_expand, sort_mode, theElement, region_id, town_id, search_in_results, search_in_results_word, from_catalogue )
{
	overall_time_counter[word_id + firm_id] = 0;
	
	if (is_expand=='expand')
	fShowHide(show_section, section_id);

	if (is_expand=='expand')
	window.setInterval("load_counter('" + word_id + "', '" + firm_id + "', '" + section_id + "')", 100);
	
	var oDiv = document.getElementById("right_nav_selector");
	
	if (oDiv)
	{
		if (open_sections > 0)
		{
			oDiv.className = "WMSMS";
			isPanelShow = true;
		}
		else
		{
			oDiv.className = "WMSMH";
			isPanelShow = false;
		}
	}

	var oDiv_buttons = document.getElementById("right_buttons");
	if (oDiv_buttons)
	{
		if (open_sections > 0)			oDiv_buttons.className = "WMSMS";
		else							oDiv_buttons.className = "WMSMH";
	}	

	var loader_link = 't_simple_loader.php';
	
	if ( from_catalogue.length > 0 ) 
	loader_link = from_catalogue + 't_simple_loader.php';
	
	
	JsHttpRequest.query(
        loader_link, 
		{ 	section_id: section_id, 
			searchwords: searchwords, 
			word_id: word_id, 
			firm_id: firm_id, 
			label_name: label_name, 
			sort_mode: sort_mode,
			region_id: region_id, 
			town_id: town_id, 
			search_in_results: search_in_results, 
			search_in_results_word: search_in_results_word 
		}, 
        function(responseJS, responseText) {
            if (responseJS.result_content)
			content_section.innerHTML = responseJS.result_content;
        },
        false 
    );
}


