function resizeIframe(iframeID) {
	/* "iframeID" is the ID of the iframe in the parent page. */
	var FramePageHeight = document.getElementById(iframeID).contentWindow.document.body.scrollHeight;
	document.getElementById(iframeID).height=FramePageHeight; 
}