I understand your issue, but NO ONE can solve a vendor specific format issue --
you must get that information from the vender
Have you even seen XML?
Code:
<book>
<title>The Zin of Motorcycle Repair</title>
<author> ... </author>
<publisher> ... </publisher>
<isbn> ... </isbn>
<toc> </toc>
<body> </body>
<index> </index>
</book>
The XML grammar is used to describe content, not actions like insert.
There might be a tag for some picture but that's where it gets complicated:
Code:
<picture>
<format>bmp</format>
<filelocation> ...</filelocation>
<picturetitle> ... </picturetitle>
it could also just as easily be something like
Code:
<graphic>
<type>png</type>
<source> ...</source>
<name> ... </name>
sorry