﻿// JScript File

function resizeIframe(iframe) {

//alert(iframe.contentWindow.document.height);
    if (iframe.contentWindow) {
        if(iframe.contentWindow.document) {
            if (iframe.contentWindow.document.height) {
                var h = parseInt('' + iframe.contentWindow.document.height,10);
                var h2 = 0;
                if (iframe.clientHeight)
                    h2 = Math.max(h2,iframe.clientHeight);
                if (iframe.offsetHeight)
                    h2 = Math.max(h2,iframe.offsetHeight);
                h2 = Math.max(h2,h);
                iframe.style.height = h2 + 'px';
                //alert(h2);
            }
        }
    }
    
}
