hello everbody,
I've found this script (here -> "http://forum.jswelt.de/javascript/31676-iframe-dynamisch-h-he-anpassen.html"

to change the iframe height dynamically.
it only works correctly in IE8 (other IE-browser not tested), other brother tested: mozFirefox, googleChrome and safari.
does anybody have an idea, how to make it work for the other browser?
function resizeMe(n, id) {
d=0;
ifObj=document.getElementsByName(n)[0];
p=(document.all)?'scroll':'offset';
eval("ifObj.style.height=window.frames[n].document.getElementsByTagName('body'

[0]."+p+"Height+"+d);
}
the iframe looks like that:
<iframe id="MContenIFrame" name="main" onload="javascript:parent.resizeMe('MContenIFrame'

;" src="start.html"> </iframe>
I'm searching for days, but still hasn't found any working solution for any browser other than IE8...
..thank you for any help!