function show_block(id)
{
	is_display=$('div#b_'+id).css('display');
	if(is_display=='none'){
		$('a#a_'+id).html('<<<');
		$('a#a_'+id).attr('title','свернуть');
		$('div#b_'+id).show(100);
	}else{
	    $('a#a_'+id).html('>>');
	    $('a#a_'+id).attr('title','развернуть');
		$('div#b_'+id).hide(100);
	}
}
