en primer lugar, si estas con html y css no hagas tu sitio con tablas
en cuanto a tu problema, no revise en el navegador tu codigo, pero a simple vista vi tu error
Código HTML:
<table width="95%" height="87%" align="center" style="background:url('medio6.png')no-repeat style=width:"100%; height:"100%" border=3>
<tr>
<td></td>
</tr>
</table>
Deberia estar asi
Código HTML:
<table width="95%" height="87%" align="center" style="background: url(medio6.png) no-repeat 0 0; width:100%; height:100%;" border=3>
<tr>
<td></td>
</tr>
</table>