function deleteComment(iComment)
{
	
    var oRequest = {
        method: "post",
        postBody: "comment_id=" + iComment,
        
        onSuccess: function(oXMLHttp){
            $('comment[' + iComment + ']').parentNode.removeChild($('comment[' + iComment + ']'));
        }
    };
    
	
    var sUrl = "User/DeleteComment/";
    new Ajax.Request(sUrl, oRequest);
	
}




