If you want to clip the embed then you should be sizing the iframe to the size you want to show instead of doing it with the container div for the iframe.
You also need some css to better control shit.
Something like:
First - put a main container around the whole mess. This will limit the height and width. I used 1380 as the width because the elements you have add up to 1320 and I leave wiggle room for the way certain browsers handle shit.
<div style="width:1380px;height:600px;">
Then instead of the align left, use css float:left. This will bring the column up against the left side of the main container.
<div style="float:left;">
<a href="http://www.65.com/affiliates/in/IGtl/N5CTj/?track=" target="_blank" title="lot">
<img src="/images/2.gif" width="160" height="600" alt="imags"></a>
</div>
Take the wrapper away from the iframe. The iframe is a container, use that to control the size of what is displayed inside of it. Get rid of your positioning stuff that you have in there. Also make it float:left so it butts up against the left column.
<iframe name="i_frame" src="http://fl65.com/go/siteslike/.php" style="float:left;width: 1000px; height: 500px;" scrolling="no"></iframe>
For the right most column you can make it float:left to but up against the iframe or float:right to butt up against the right side of the main container.
<div style="float:left;">
<a href="http://www.f365.com/affiliates/in/IGtl/N5CTj/?track=d" target="_blank" title="Free sex cam">
<img src="images/1.jpg" width="160" height="600" alt="Free sex cam"></a>
</div>
Then close your main div
</div>
I think that will work.
Code:
<div style="width:11380px;height:600px;">
<div style="float:left;">
<a href="http://www.65.com/affiliates/in/IGtl/N5CTj/?track=" target="_blank" title="lot">
<img src="/images/2.gif" width="160" height="600" alt="imags"></a>
</div>
<iframe name="i_frame" src="http://fl65.com/go/siteslike/.php" style="float:left;width: 1000px; height: 500px;" scrolling="no"></iframe>
<div style="float:left;">
<a href="http://www.f365.com/affiliates/in/IGtl/N5CTj/?track=d" target="_blank" title="Free sex cam">
<img src="images/1.jpg" width="160" height="600" alt="Free sex cam"></a>
</div>
</div>