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

