function resize_iframe(id){
  document.getElementById(id).height=100 // required for Moz bug, value can be "", null, or integer
  document.getElementById(id).height=window.frames[id].document.body.scrollHeight+5
//  document.getElementById(id).height=window.frames[id].document.body.scrollHeight+(moz?mozHeightOffset:0)

}

