var KB_CONTENT = function () {
	}
KB_CONTENT.prototype.printContent = function ( 
												pp_id , 
												select_mode , 
												bokm_id , 
												cur_page , 
												sess_file , 
												show_all , 
												search_word , 
												group_check , 
												type_doc_check , 
												is_search 
											) {
	var str = 'testEncode=тест';
	if( pp_id != '' && pp_id != undefined ) str += '&pp_id=' + pp_id; 
	if( select_mode != '' && select_mode != undefined ) str += '&select_mode=' + select_mode; 
	if( bokm_id != '' && bokm_id != undefined ) str += '&bokm_id=' + bokm_id; 
	if( cur_page !== '' && cur_page != undefined ) str += '&cur_page=' + cur_page; 
	if( sess_file != '' && sess_file != undefined ) str += '&sess_file=' + sess_file; 
	if( show_all != '' && show_all != undefined ) str += '&show_all=' + show_all; 
	if( search_word != '' && search_word != undefined ) str += '&search_word=' + search_word; 
	if( group_check != '' && group_check != undefined ) str += '&in_group_check=' + group_check; 
	if( type_doc_check != '' && type_doc_check != undefined ) str += '&in_type_doc_check=' + type_doc_check; 
	if( is_search != '' && is_search != undefined ) str += '&search_flag=' + is_search; 

	var tmp_content_container = KB_CONTENT_AREA_OBJ.showContent();
	//alert ( tmp_content_container );
	if( !tmp_content_container ) return false;
	//alert(str);
	result = KB_SERVER_OBJ.loadFragmentInToElement( "/scripts/for_KBdocs.php?" + str , tmp_content_container , "<small class=gray>" + KB_lang[ "loading" ] + "</small>" );
	return result;
}
