// NO Java Script da Página que Chama o Iframe
function RedimensionaIframe() {
	try{	
    	var IFR = document.getElementById('ifrCont');	
		parent.document.getElementById("ifrCont").height = document.getElementById("cont").scrollHeight+0;
	}
	catch(error){ 
		alert("validado");
	}
	
	/*
	try{	
	IFR.style.height = (IFR.contentWindow)?IFR.contentWindow.document.body.scrollHeight:document.frames['ifrCont'].document.body.scrollHeight;		
	}
	catch(error){ 
		alert("teste");
	}
	*/

}