function autofitIframe(id){ 
var vHeight;
vHeight = this.document.body.scrollHeight;
if (vHeight < 1000) vHeight = 1000;

if (parent.document.getElementById(id) != null)
  parent.document.getElementById(id).style.height=vHeight+"px"
}