You can identity anonymous comments and what they relate to using a macro like:
Code:
Sub Demo()
Dim Cmnt As Comment
For Each Cmnt In ActiveDocument.Comments
With Cmnt
If .Author = "" Then
.Scope.Select
MsgBox .Range.Text
End If
End With
Next
End Sub
It's not clear what you mean by 'We need to separate them out', though.