function autofitIframe(id) {
	var thisHeight = this.document.body.scrollHeight;

	if (thisHeight < 300) thisHeight = 300;
	parent.document.getElementById(id).style.height = thisHeight+'px';
}