function resizeIframe() {
	i = parent.document.getElementById(window.name);
	i.style.height = 250 + "px";
	iHeight = document.body.scrollHeight;
	i.style.height = iHeight + "px";
}
