Any chance of an alignment parameter so as to set position within page?
When creating your page, you could create a DIV layer or use the TABLE tag, to align your content up. For example
<div>
<div id="one" style="float:left;">
My content goes here, aligned left
</div>
<div id="two" style="float:right;">
///GOOGLE GADGET CODE
</div>
</div>
or using tables
<table>
<tr>
<td>
My First column
</td>
<td>
Second Column
// GOOGLE GADGET CODE
</td>
</tr>
</table>