function altura(id) {
	var altura = document.getElementById(id).offsetHeight;
    return altura;
        
}

function resize(id,id2){
	document.getElementById(id).style.height = altura(id2);
	//parent.fechaCarregando();
	//alert(document.getElementById(id).height);
	
}