<!--
function adjustIFramesize(id) {
	var myIframe = document.getElementById(id);
	if (myIframe) {

		if (myIframe.contentDocument &&
			myIframe.contentDocument.body.offsetHeight) {
			// NN6
			myIframe.height = myIframe.contentDocument.body.offsetHeight;
		} else if (myIframe.Document &&
		           myIframe.Document.body.scrollHeight) {
			// IE6
			myIframe.height = myIframe.Document.body.scrollHeight;
		}
	}

}
-->