(XPropertySet.class, oFrame1 );
//AnchorTypes: 0 = paragraph, 1 = as char, 2 = page,
// 3 = frame/paragraph 4= at char
oPropSet.setPropertyValue("AnchorType", new Integer(2));
oText = xTextDoc.getText();
oCursor = oText.createTextCursor();
log.println( "inserting Frame1" );
oText.insertTextContent(oCursor,oFrame1, false);
} catch (Exception Ex ) {