codice:
<html>
<head>
<script language="javascript">

function resizeTable(t) {
  document.getElementById(t).style.height = screen.height;

}

</script>
<body>
<table id="tabella" width="600px" style="border: 1px solid #000000;">
  <tr>
    <td>Hello</td><td>There</td><td>How are you doing!?</td>
  </tr>
  <tr>
    <td>Hello</td><td>There</td><td>How are you doing!?</td>
  </tr>
  <tr>
    <td>Hello</td><td>There</td><td><input type="button" value="Resize me" onClick="resizeTable('tabella');"></td>
  </tr>
</table>
</body>