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