Buenas,
prueba a meterlo todo dentro de una función
function redimensionar(){
// Get all TDs in document
var docTD = document.getElementsByTagName('TD');
// Define the IFRAME
var theIframe = document.getElementById('NukeWrap');
// Find the TD with the greatest height
var i = 0;
var theHeight = 0;
while(i != docTD.length)
{
theTD = docTD[i];
if(theTD.offsetHeight > theHeight)
{
var theHeight = theTD.offsetHeight;
}
i++;
}
// Size the IFRAME
if(theHeight != 0)
{
theIframe.height = theHeight;
}
}
Y a la página que se cargue dentro de tu iframe le puedes pedir un
<body
onload="parent.redimensionar()">
Es mi sugerencia dentro de lo poco que entendí
Si eso, pues explicoteas un poco más a ver si acertamos
saludos