<!--
	
	function iframeResize(i){
		adic = i;
		//alert(adic);
		hgt_home = top.hgt_main; // Busca valor definido pelo tamanho da Home inicial.
		//alert(hgt_home);
		top.tblhome.height = '100%'; // Define iFrame a 100%
		hgt_home_atual = top.tblhome.offsetHeight; // Verifica tamanho em pixels da Home atual.
		//doc_atual = document.body.offsetHeight; // Verifica o tamanho da página atual.
		doc_atual = document.body.scrollHeight + adic;
		//alert(doc_atual);
		//alert(hgt_home_atual);
		
			if(doc_atual<=hgt_home_atual){
				top.tblhome.height = hgt_home_atual;
			}else if(doc_atual > hgt_home_atual){
				top.tblhome.height = doc_atual;
			}

		}

//-->
