Question : load a subtree into an XDocument

I load an XML document in VB using Dim doc As XDocument = XDocument.Load(XmlFilePath) , all is fine.
Dim doc As XDocument = XDocument.Load(XmlFilePath)


what i want to do is :

Dim docFrameElements As XDocument = .. the tree of nodes under "FrameElements"
Dim docInteractions As XDocument = .. the tree of nodes under "Interactions"

Can you offer me vb sytnaxt to do that sort of thing please.
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
 
-