Dim is a declaration statement. oRng is a variable. Word.Range is an object.
I used DIM to declare the variable oRng as was Word.Range object.
I then set the oRng variable object = to the ActiveDocument.Range
The I searched the range for the text "^13" (I used ^13 because "^p" is invalid in the find what when wildcards are used.) "{2,}" is a wildcard statement meaning to search for 2 or more instances.
See "Learn to love ranges" here:
http://gregmaxey.com/word_tip_pages/vba_basics.html