function news (page, type, without)
{
	if (type == 'next') {
		page ++;
	} else if (type == 'prev') {
		page --;
	} else {
		return false;
	}
	$('#news_block').html ("<img src='/images/loading.gif' />");
	$.ajax ({
		type: 'POST', url: '/news/ajax/' + page + '/' + without + '/', dataType: 'html',
		success: function (data) {
			$('#news_block').html (data);
		},
		error: function() {
			$('#news_block').html ("Ошибка загрузки данных");
		}
	});
}
