﻿function rate(postID,id,b){
	$.get('/handler/rateComment.ashx?postID='+postID+'&cid='+id+(b?'&positive=1':''),null,rateEnd);
}

function rateEnd(d){
	eval('var i = '+d);
	$('#t'+i.id).text(i.t);
	$('#p'+i.id).text(i.p);
	$('#n'+i.id).text(i.n);
}

function reply(id,e){
	$('#answer').html(
		'<b>Ответ на комментарий '+$('#author'+id).html()+':</b><br/>'+
		$('#text'+id).text()+
		' <b><a href="#" onclick="return cancel()">Отмена</a></b><div class="clr10"></div>'
	).show()
	$(hfParent).val(id)
}

function cancel(){
	$('#answer').hide()
	$(hfParent).val(0)
	return false;
}