Dominik: iframe in einer tabelle mit rowspan

Meine Frage:
Ich will in meiner Tabelle einen eingebetteten frame einbauen. Ich habe nur ein problem, ich weiß nicht, ob da möglich ist. Oder der code da drunter überhaupt stimmt :(
hoffentlich kann mir jmd helfen.
der iframe soll dann den code haben:
<iframe src="****.html" width="100%" height="100%" name="frame" frameborder="0">
d.h. er soll die ganze größe des tabellenkästchens brauchen.
vielen dank schon mal

<html>
<head>
<title>test</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body bgcolor="#000000" text="#FFFFFF">
<table width="59%" border="0">
  <tr>
    <td width="25%"> </td>
    <td width="43%">Link</td>
    <td width="32%"> </td>
  </tr>
  <tr>
    <td width="25%"> </td>
    <th rowspan="5" width="43%">
    <td width="32%">Link</td>
  </tr>
  <tr>
    <td width="25%"> </td>
    <td width="32%">Link</td>
  </tr>
  <tr>
    <td width="25%"> </td>
    <td width="32%">Link</td>
  </tr>
  <tr>
    <td width="25%"> </td>
    <td width="32%">Link</td>
  </tr>
  <tr>
    <td width="25%"> </td>
    <td width="32%">Linkasd</td>
  </tr>
  <tr>
    <td width="25%"> </td>
    <td width="43%">&asdasd</td>
  </tr>
</table>

</body>
</html>