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