﻿function deleteComment(objCommentID) {
    if (confirm('Are you sure you want to delete your comment?')) {
        document.actionForm.commentid.value = objCommentID;
        document.actionForm.theaction.value = 'deletecomment';
           document.actionForm.submit();

    }

}