/* dipindahin ke view, karna pake image loader
function commentLoad(a,b,c){
	$.ajax({
		type: "POST",
		url: "/comment/load/",
		data: "valIndex=" + a + "&articleId=" + b + "&defaultValue=" + c,
		success: function(msg){		
			$("#loadkomen").html(msg);
			//$(".balasan").hide();	
		}		
	})
}
*/
function commentReply(a){
	$("#balas_" + a).toggle("slow");
}

function sendReply(a,b,c){
	//alert (a + '---' + b);
	var articleId = a;
	var comment = b;
	var captcha_code = c;
	if(comment!=''){
		$.ajax({
			type: "POST",
			url: "/comment/insertReply/",
			data: "article_comment_id=" + articleId + "&comment_reply=" + comment + "&captcha_code=" + captcha_code,
			success: function(msg){		
				alert(msg);
			}		
		})
	}
}
