function calcHeight() {
  //find the height of the internal page
  var the_height= document.getElementById('login').contentWindow.document.body.scrollHeight;

  //change the height of the iframe
  document.getElementById('login').height=the_height; 
  ;
}


