function redimensionar_iframe(){
	try{
	var oBody = iframe_listado.document.body;
	var oFrame = document.all('iframe_listado');
	
	oFrame.style.height = oBody.scrollHeight + (oBody.offsetHeight - oBody.clientHeight);
	document.getElementById('iframe_listado').width = 771;
	}
	catch(e){
	document.getElementById('iframe_listado').width = 771;
	document.getElementById('iframe_listado').height = window.frames.iframe_listado.document.body.offsetHeight + 20;
	}
}

