:eek:
Oni, I have a dilema: I would like to help you, but I don't think this is the correct forum for this type of problem. Your situation involves a simple layout issue. Nothing more. Your problem is that you are trying to put two iframes together, side by side, each with a width of 300px, into a table cell that is currently set at 266pixels to match your image. That won't work. So try the following (and then keep your posts here in the future to PHP-related):
<tr>
<td width="740" valign="top" background="images/pixi_khaki.gif">
<table border="0" cellpadding="0" cellspacing="0" width="600">
<tr>
<td width="300">
<img src="images/mainpic.gif" width="266" height="181" alt="top" />
</td>
<td> </td>
</tr>
<tr>
<td>
<iframe name="iFrame1" width="300" height="225" src="http://www.sirius.trap17.com/" scrolling="no" frameborder="0"></iframe>
</td>
<td>
<iframe name="iFrame1" width="300" height="225" src="http://www.sirius.trap17.com/control" scrolling="no" frameborder="0"></iframe>
</td>
</tr>
</table>
</td>
</tr>