// JavaScript Document
function resizeIframe(adicional) {	
		if(adicional==undefined) adicional=0;
	
		iHeight = document.body.scrollHeight;
		parent.document.getElementById(window.name).height = iHeight+adicional;
}