function adjustIFrameSize (iframeWindow) 
{ 
  if (iframeWindow.document.height) 
  { 
    var iframeName = iframeWindow.name;
    var iframeElement = parent.document.getElementById(iframeName); 
    //iframeElement.style.height = iframeWindow.document.height + 25 + 'px';
    iframeElement.style.height = iframeWindow.document.height + 50 + 'px';
    if (iframeWindow.document.height < 800) {iframeElement.style.height = 800 + 'px';}
  } 
  else if (document.all) 
  { 
    var iframeElement = parent.document.all[iframeWindow.name]; 
    if (iframeWindow.document.compatMode && 
        iframeWindow.document.compatMode != 'BackCompat') 
    { 
      iframeElement.style.height = iframeWindow.document.documentElement.scrollHeight + 5 + 'px'; 
      if (iframeWindow.document.documentElement.scrollHeight < 800) {iframeElement.style.height = 800 + 'px';}
    } 
    else { 
      iframeElement.style.height = iframeWindow.document.body.scrollHeight + 5 + 'px'; 
      if (iframeWindow.document.body.scrollHeight < 800) {iframeElement.style.height = 800 + 'px';}
    } 
  } 
} 

