function resizeIframe() {
	var i = parent.document.getElementById("contentContainer");
	var iHeight = document.body.scrollHeight;
	i.style.height = iHeight + 5 + "px";
}
