A screen shot would definitely help.
However, in the case that the 3 parts of the logo are supposed to show up vertically, then I think I have found a problem:
code:
<TR>
<TD COLSPAN=2>
<IMG SRC="images/logo_01.gif" WIDTH=126 HEIGHT=62 ALT=""></TD>
<TD COLSPAN=2 ROWSPAN=3 ALIGN=left VALIGN=top>
<IMG SRC="images/logo_02.gif" WIDTH=380 HEIGHT=183 ALT=""></TD>
<TD>
<IMG SRC="images/logo_03.gif" WIDTH=125 HEIGHT=62 ALT=""></TD>
</TR>
If you want logo_01.gif and logo_02.gif to be displayed vertically, you'd have to put them in different rows of your table.
So your code should look something like this:
code:
<p align=center>
<table cellpadding=0 cellspacing=0 width=631 border=0>
<tr>
<td><p align=center> </p></td>
</tr>
<tr>
<td>
<table cellspacing=0 cellpadding=0 border=0 width=100%>
<tr>
<td><p align=center>
<IMG SRC="http://www.jusjen.com/images/logo_01.gif" ALT=""><br>
<IMG SRC="http://www.jusjen.com/images/logo_02.gif" ALT=""><br>
<IMG SRC="http://www.jusjen.com/images/logo_03.gif" ALT=""></p>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table cellspacing=0 cellpadding=0 border=0 width=100%>
<tr>
<td><p align=right>
<IMG SRC="http://www.jusjen.com/images/logo_04.gif" WIDTH=126 HEIGHT=82 ALT="">
</p>
</td>
<td><p align=left>
<IMG SRC="http://www.jusjen.com/images/logo_05.gif" WIDTH=125 HEIGHT=82 ALT="">
</p>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td><p align=center> </p></td>
</tr>
<tr>
<td>
<p align=center><IMG SRC="http://www.jusjen.com/images/logo_09.gif"></p>
</td>
</tr>
</table>
</p>
Please note:
I couldn't find out where logo_09.gif was originally supposed to be as it wouldn't fit below the main logo, although it has some shadows.
And I removed all of the blank white graphics and replaced them with HTML commands (I think they do what you wanted them to do).