function resizeIframe() {
  var iframe = parent.document.getElementById("content");

if (document.all && !window.opera) {
    var height = document.body.scrollHeight;  // IE
} else {
    var height = document.body.offsetHeight;  // Mozilla, Opera, Safari
}

  iframe.style.height = height + 40 + "px";
}
