//For iframes
function adjustHeight() {
	var the_height = document.getElementById('dynamicontent').contentWindow.document.body.scrollHeight;
	document.getElementById('dynamicontent').height = the_height + 50;
}
