function calcHeight(FrameName) 
{
  var the_height= document.getElementById(FrameName).contentWindow.document.body.scrollHeight; 
document.getElementById(FrameName).height=the_height; 
} 
