<html>
<head>
<script>
var topMargin;
var bottomMargin;
function changeDimensions()
{
topMargin = fixedTable.offsetTop + fixedRow.offsetHeight/4;
var leftMargin = fixedTable.offsetLeft + leftCol.offsetWidth/4;
var rightMargin = fixedTable.offsetLeft + leftCol.offsetWidth + (rightCol.offsetWidth*3/4);
textToPlace.style.position = 'absolute';
textToPlace.style.left = leftMargin;
textToPlace.style.top = topMargin;
textToPlace.style.width = rightMargin - leftMargin;
setTimeout("textToPlace.style.display = 'inline';",1000);
setTimeout("bottomMargin = textToPlace.offsetTop + textToPlace.offsetHeight + fixedRow.offsetHeight/4;",2000);
setTimeout("fixedRow.style.height = bottomMargin - topMargin;",2000);
setTimeout("textToPlace.style.visibility = 'visible';",3000);
}//end showDimensions()
</script>
</head>
<body onload='changeDimensions()'>
<table id='fixedTable' border='1'>
<tr id='fixedRow'>
<td><div id='leftCol'> </div></td>
<td><div id='rightCol'> </div></td>
</tr>
<tr>
<td>Hello from the left column!</td>
<td>Hello from the right column! I'm much longer than the left!</td>
</tr>
</table>
<div id='textToPlace' style='visibility:hidden;display:none'>
Look at me! I'm crossing boundaries! ...and taking up 3/4 of each of the cells I enter!
</div>
</html>