function RedimensionaIframe() {
	var ifr = document.getElementById('conteudo');
	var altura = ifr.contentWindow.document.body.scrollHeight;
	if(altura > 120) {
		ifr.style.height = altura;
	} else {
		ifr.style.height = 120;
	}
}

