function checkHeight(nomeDoIframe){
	if(document.getElementById){
	parent.document.getElementById(nomeDoIframe).height = document.body.scrollHeight;
	}
	else{
	parent.document.all(nomeDoIframe).height = document.body.scrollHeight;
	}
}