function adjustIFrameSize (iframeWindow) {
	if (iframeWindow.document.height) {
		var iframeElement = self.document.getElementById(iframeWindow.name);
		iframeElement.style.height = iframeWindow.document.height + 'px';
		iframeElement.style.width = iframeWindow.document.width + 'px';
	}
	else if (document.all) {
		var iframeElement = self.document.all[iframeWindow.name];
		if (iframeWindow.document.compatMode && iframeWindow.document.compatMode != 'BackCompat') {
			iframeElement.style.height = iframeWindow.document.documentElement.scrollHeight + 'px';
			iframeElement.style.width = iframeWindow.document.documentElement.scrollWidth + 'px';
		}
		else {
			iframeElement.style.height = iframeWindow.document.body.scrollHeight + 'px';
			iframeElement.style.width = iframeWindow.document.body.scrollWidth + 'px';
		}
	}
}