Problema con tabla

Hola, tengo una duda. No puedo centrar el contenido de una tabla. Dejo el código para ver si estoy haciendo algo mal. He probado poniendo el align en el TD dentro de table style y nada, no se me centra ni a la de 3


<table style="HEIGHT:100%;WIDTH:100%";" border="0" cellpadding="0" cellspacing="0" width="800">
<!-- fwtable fwsrc="Sin título" fwpage="Página 1" fwbase="infocomercio" fwstyle="Dreamweaver" fwdocid = "487495439" fwnested="0" -->

<tr align="center" bottom="middle">
<td>
<td><img src="spacer.gif" width="119" height="1" alt="" /></td>
<td><img src="spacer.gif" width="10" height="1" alt="" /></td>
<td><img src="spacer.gif" width="560" height="1" alt="" /></td>
<td><img src="spacer.gif" width="7" height="1" alt="" /></td>
<td><img src="spacer.gif" width="104" height="1" alt="" /></td>
<td><img src="spacer.gif" width="1" height="1" alt="" /></td>
</tr>
<tr>
<td colspan="5"><img name="infocomercio_r1_c1" src="infocomercio_r1_c1.jpg" width="800" height="61" id="infocomercio_r1_c1" alt="" /></td>
<td><img src="spacer.gif" width="1" height="61" alt="" /></td>
</tr>
<tr>
<td rowspan="4"><img name="infocomercio_r2_c1" src="infocomercio_r2_c1.jpg" width="119" height="539" id="infocomercio_r2_c1" alt="" /></td>
<td colspan="3"><img name="infocomercio_r2_c2" src="https://lh6.googleusercontent.com/-t37_noPUvdI/UBli3mCuJyI/AAAAAAAA…" width="577" height="313" id="infocomercio_r2_c2" alt="" /></td>
<td rowspan="4"><img name="infocomercio_r2_c5" src="infocomercio_r2_c5.jpg" width="104" height="539" id="infocomercio_r2_c5" alt="" /></td>
<td><img src="spacer.gif" width="1" height="313" alt="" /></td>
</tr>
<tr>
<td colspan="3"><img name="infocomercio_r3_c2" src="infocomercio_r3_c2.jpg" width="577" height="88" id="infocomercio_r3_c2" usemap="#m_infocomercio_r3_c2" alt="" /></td>
<td><img src="spacer.gif" width="1" height="88" alt="" /></td>
</tr>
<tr>
<td rowspan="2"><img name="infocomercio_r4_c2" src="infocomercio_r4_c2.jpg" width="10" height="138" id="infocomercio_r4_c2" alt="" /></td>
<td><a href="www.viajesbuenavista.com">www.viajesbuenavista.com</a>"infocomercio_r4_c3.jpg" width="560" height="67" id="infocomercio_r4_c3" alt="" /></td>
<td rowspan="2"><img name="infocomercio_r4_c4" src="infocomercio_r4_c4.jpg" width="7" height="138" id="infocomercio_r4_c4" alt="" /></td>
<td><img src="spacer.gif" width="1" height="67" alt="" /></td>
</tr>
<tr>
<td><img name="infocomercio_r5_c3" src="infocomercio_r5_c3.jpg" width="560" height="71" id="infocomercio_r5_c3" usemap="#m_infocomercio_r5_c3" alt="" /></td>
<td><img src="spacer.gif" width="1" height="71" alt="" /></td>
</tr>
</table>
<map name="m_infocomercio_r3_c2" id="m_infocomercio_r3_c2">
<area shape="rect" coords="10,42,570,78" href="http://www.viajesbuenavista.es" target="_blank" alt="" />
</map>
<map name="m_infocomercio_r5_c3" id="m_infocomercio_r5_c3">
<area shape="rect" coords="0,28,560,71" href="javascript:;" alt="" />
</map>
Gracias
arriba donde dice

<table style="HEIGHT:100%;WIDTH:100%";" border="0" cellpadding="0" cellspacing="0" width="800">

hay un HEIGHT (alto)y un WIDTH(ancho) en un 100% que estan demas porque luego le agregas un width 800
lo deje asi

<table style=" border="0" cellpadding="0" cellspacing="0" width="800" align="center">

agregue un aligen="center"(alinear al centro)

se centra en firefox, no tengo las imágenes ni los videos pero prueba viendo que no se repitan las ordenes.
Ahora ya no hay quien lo cuadre, lo pongo como al principio y no me hace caso. Aparece la imagen como partida en 2
el codigo de una tabla es este de dos columnas y dos filas es este:

<table >
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>

si te fijas <td></td> es una celda enpiesa con un <td> y cierra con </td> , los <tr></tr> son las filas . Ahora si por alguna razón este orden se altera queda todo mal.
por esto es mejor el curso que se hace aquí en la web, porque ponemos las tablas dentro de un <div></div> y las medidas y la posición la controlamos desde la hoja de estilos
en mi web hay un pequeño curso resumen, pero te digo si no manejas el código html y lo copias de algún lado este se puede alterar