Hola.
Coloca esto en el head de tu página principal:
Código:
<script>
function resize()
{
if (document.all)
document.getElementById("nombre_del_iframe").style.height = window.frames.nombre_del_iframe.document.body.scrollHeight + 20
else
document.getElementById("nombre_del_iframe").style.height = window.frames.nombre_del_iframe.document.body.offsetHeight + 20
}
</script>
y que tu iframe sea como éste:
Código:
<iframe name="nombre_del_iframe" id="nombre_del_iframe" style="border: 0px; overflow: hidden; width: 100%; height: 100%" onload="resize()" src="tu_pagina_por_defecto.htm" frameborder="0">
</iframe>
ya dirás si te ha funcionado.