<!--
function calcHeight(frame_id)
{
//find the height of the internal page
var the_height=document.getElementById(frame_id).contentWindow.document.body.scrollHeight;

//change the height of the iframe
document.getElementById(frame_id).height=the_height + 15;
}
//-->
