
$(function () {

$("a.commentadd").fancybox({	
});

	$('a.basic').click(function (e) {
		e.preventDefault();
		$('#addcomment').modal();
		$('#addcomment').show();
	});
	$("a.modalCloseImg").click(function() {
	$('#addcomment').hide();
	});
	$("#CommentAdd").click(function(){
	var sended = "";
	sended=$("#ctl00$ContentPlaceHolder1$TextBox1").val();
	 $.ajax({
                        type: "GET",
                        url: "/ajax.aspx",
                        data: "text=" + sended + "&ID=<%#Request.QueryString.Get('ID').ToString()%>&Command=CommandAdd", 
                        error: function() {
                       $("#ok").html("Hata Oluştu");
                        },
                        success: function(data) 
                        {
                        $("#ok").html(data);
                        }
                    });
});
});
