function resizeIframe(frame) {
  try {
     innerDoc = (frame.contentDocument) ? frame.contentDocument : frame.contentWindow.document;
     objToResize = (frame.style) ? frame.style : frame;
     objToResize.height = innerDoc.body.scrollHeight + 5;
  }
  catch (e) {
     window.status = e.message;
  }
}
