function ajuste01(principal, frame)
{
	var rodape = (principal - 106);
	document.getElementById('div_principal').style.height = principal+'px';
	document.getElementById('img_rodape').style.top = rodape+'px';
	document.getElementById('conteudo').style.height = frame+'px';
	document.getElementById('intFrame').height = frame;
}
function ajuste02(principal, frame)
{
	var rodape = (principal - 106);
	parent.document.getElementById('div_principal').style.height = principal+'px';
	parent.document.getElementById('img_rodape').style.top = rodape+'px';
	parent.document.getElementById('conteudo').style.height = frame+'px';
	parent.document.getElementById('intFrame').height = frame;
}
