function objeto_iframe(){
	if(document.getElementById)
		return parent.document.getElementById("frmPrincipal").style;
	else
		return parent.document.frmPrincipal.style;
}
function objeto_tamanho(){
	if(document.body)
		return parseInt(document.body.scrollHeight);
	else
		return parseInt(document.scrollHeight);
}
function redim_iframe(){
	a_iframe = objeto_iframe().height;
	a_iframe = a_iframe.replace('px', '');
	a_iframe = parseInt(a_iframe);	
	a_pagina = (objeto_tamanho())?parseInt(objeto_tamanho()):699;
	if(a_iframe != a_pagina)
		objeto_iframe().height = a_pagina;
}

function Redimensionar(){
//
}

try{
	tmp_redim = window.setInterval(redim_iframe(), 100);
}catch(e){
	tmp_redim = window.setInterval('redim_iframe()', 100);
}