Contact
Wrapper
function iFrameHeightX( iFrameId ) {
var h = 0;
if ( !document.all ) {
h = document.getElementById(iFrameId).contentDocument.height;
document.getElementById(iFrameId).style.height = h + 60 + 'px';
} else if( document.all ) {
h = document.frames(iFrameId).document.body.scrollHeight;
document.all[iFrameId].style.height = h + 20 + 'px';
}
}
This option will not work correctly. Unfortunately, your browser does not support Inline Frames