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