function calcHeight(iframe)
{
  try
  {
    var height = iframe.contentWindow.document.body.scrollHeight;
    // alert(height);
    iframe.height = height;
  }
  catch(e){
    // alert(e);
  }
}
