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