function resizeIframe(id) {
	if (window == top) { return; }
	i = parent.document.getElementById(window.name);
	if (i)
	{
		parent.setImg(id);
		iHeight = document.body.scrollHeight;
		i.style.height = iHeight + 5 + "px";
	}
}
