// JavaScript Document

//Função de redimencionamento de iframes
function contentRefresh() {	    
	parent.document.getElementById("iConteudo").height = document.getElementById("Content").scrollHeight + 40; //40: Margem Superior e Inferior, somadas    
}


