Много чего делаешь не так
1. Решение с таблицами:
Код:
<table celspadding="0" cellspacing="0" style="border:0; width:100%;">
<tr>
<td style="width:99px; height:128px;">
<!-- Вставляем флэшку -->
</td>
<td style="width:99%; height:128px;">
<img src="all.jpg" width="500" height="128" style="border:0;" alt="" />
</tr>
</table>
2. Решиние с дивами
Код:
<style type="text/css" media="all">
#header {position:relative; width:100%; height:128px;}
#block1 {position:absolute; top:0px; left:0px; width:99px; height:128px;}
#block2 {position:absolute; top:0px; left:99px; width:500px; height:128px;}
</style>
<div id="header">
<div id="block1">
<!-- Вставляем флэшку -->
</div>
<div id="block2">
<img src="all.jpg" width="500" height="128" style="border:0;" alt="" />
</div>
</div>