﻿function calcHeight(id) {
    var f = document.getElementById(id);
    f.style.height = '100px';
    var d = (f.contentWindow.document || f.contentDocument);
    var h = Math.max(d.body.offsetHeight, d.body.scrollHeight);
    h += 20;
    f.style.height = h + 'px';
    f.setAttribute("height", h);
}    
