function autofitIframe(id){ 

if (this.document.body.scrollHeight < 800) 
	h = 800;
else
	h = this.document.body.scrollHeight;

parent.document.getElementById(id).style.height= h + "px"; 
}