//iframe 適応高さ
function getHeight(id, name) {
document.documentElement.scrollTop = 0;
var ifm = document.getElementById(id);
var subWeb = document.frames[name] ; document :
ifm.contentDocument;
if (ifm != null && subWeb != null) {
ifm.height = subWeb.body.scrollHeight; }
initParentHeight();親ページの iframe の高さを初期化します
}
function initParentHeight() //親ページの iframe の高さを初期化します
{
var div = window.parent.document.getElementById('mainFrame');
div .style.height= window.document.body.scrollHeight||window.document.body.offsetHeight+5;