
function calcHeight()
{
    //find the height of the internal page
    var the_height= document.getElementById('the_iframe').contentWindow.document.body.scrollHeight ;
        
    var newHeight = the_height + 50;
    
    //change the height of the iframe
    document.getElementById('the_iframe').height= newHeight;
}




