iframeコンテンツ適応高さ-究極のソリューション


第1の方法:
サブページのロードが完了したときに実行
parent.document.getElementById("iframe").height=0;
parent.document.getElementById("iframe").height=document.body.scrollHeight;
2番目の方法:
ホームページのiframe onLoad時間に書いてあります
function iframeLoad()
{
    document.getElementById("iframe").height=0;
    document.getElementById("iframe").height=document.getElementById("iframe").contentWindow.document.body.scrollHeight;
}

2つ目をお勧めします