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