function iframe_set_height(id) {
  frame = id;
  doc = (frame.contentDocument) ? frame.contentDocument : frame.contentWindow.document;
  obj = (frame.style) ? frame.style : frame;
  obj.height = (doc.body.scrollHeight + 20) + 'px';
}
