It works perfect in IE. Resizing the table works in NS but not the div. Do anyone knows how it works?
To resize the table works like this:
CODE
var x=document.getElementById(myTable).rows
x[0].style.height= y - 125;
To resize the div in IE works it like this:
CODE
myDIV.style.pixelHeight = y - 125;
HELP!