Use this:
[tt]
<script>
function changeDims(elemName, w, h)
{
document.getElementById(elemName).style.width = w;
document.getElementById(elemName).style.height = h;
}
</script>
. . .
<table id="first">
. . .
<a href="#" onclick="changeDims('first', 300, 100)">change elem1 size</a>
[/tt]
This work in Opera, IE5+ and Mozilla, but not eaxctly the same.