﻿// JScript File
function resizeIframe(frameName) {
  try {
    var body = window.frames[frameName].document.body; 
    if(body) {
      var ifrm = document.getElementById(frameName);
      if (ifrm) {
        ifrm.style.height = (body.scrollHeight || body.offsetHeight) + 20 + 'px';
      }
    }
  }
  catch (e) {
    // Ignore this for now
  }
}
// --------------------------------------------------------------------------------------- 
