function calcHeight()
{
  var the_height=
    document.getElementById('myframe').contentWindow.
      document.body.scrollHeight;

  document.getElementById('myframe').height=
      the_height + 0;
}
