function iFrameHeight() {
    var h = 0;
    var Opera = window.opera ? true : false;
    if (Opera) {
        h = document.getElementById('blockrandom').contentDocument.getElementById('inHeight').offsetHeight + 0;
//        alert("Opera");
        document.getElementById('blockrandom').setAttribute("height",h);
    } else if ( !document.all ) {
        h = document.getElementById('blockrandom').contentDocument.height;
//        alert("Filefox・chrome "+h);
        document.getElementById('blockrandom').style.height = h + 0 + 'px';
    } else if( document.all ) {
        h = document.frames('blockrandom').document.body.scrollHeight;
//        alert("IE");
        document.all.blockrandom.style.height = h + 0 + 'px';
    }
}

