
function calcHeight(framename)
{
//find the height of the internal page
var the_height=document.getElementById(framename).document.body.scrollHeight;

//change the height of the iframe
document.getElementById(framename).height=the_height;
}