// JavaScript Document
function calcHeight()
{
//achar a altura
var the_height=
document.getElementById('the_iframe').contentWindow.
document.body.scrollHeight;

//mudar a altura do iFrame
document.getElementById('the_iframe').height=
the_height;
}