

function dyniframesize(iframename) {
 var the_height=
    document.getElementById(iframename).contentWindow.
      document.body.scrollHeight;

  //change the height of the iframe
  document.getElementById(iframename).height=
      the_height;
}