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