<!--
function adjustFrame(frame) 
{
	var dynHeight = document.getElementById('dynamicIframe').contentWindow.document.body.scrollHeight + 20;

	if (dynHeight < 200) dynHeight = 200;

	document.getElementById('dynamicIframe').style.height = dynHeight;
}
//-->