function calcIframeHeight(iframeObj)
{
  //find the height of the internal page
  var the_height=iframeObj.contentWindow.document.body.scrollHeight + 30;

  //change the height of the iframe
  iframeObj.height= the_height;
}