// JavaScript Document
function iframeResize(iframeWindow) {
	var iframeElement = parent.document.getElementById(iframeWindow.name);
	if ((iframeWindow.document.height)) {
		 iframeElement.style.height = iframeWindow.document.height + 0 + "px"; // + 35 + 'px';
		 iframeElement.style.width = window.document.width + 0 + "px"; // + 5 + 'px';
	}
	else if (iframeWindow.document.documentElement.scrollHeight) {
		iframeElement.style.height = iframeWindow.document.documentElement.scrollHeight + 0 + "px"; // + 35 + 'px';
		iframeElement.style.width = iframeWindow.document.documentElement.scrollWidth + 0 + "px"; // + 5 + 'px';
	}
}
