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