﻿   function reinitIframe()
    {
        var iframe = document.getElementById("info");
        try
        {
            var bHeight = iframe.contentWindow.document.body.scrollHeight;
            var dHeight = iframe.contentWindow.document.documentElement.scrollHeight;
            var height = Math.max(bHeight, dHeight);
            iframe.height =  height;
        }
        catch (ex)
        {}
    }

    window.setTimeout("reinitIframe()", 200);
 
