function resizeIframe( idIframe )
{
	var miIframe = document.getElementById( idIframe );
		if (!window.ActiveXObject) //		if( miIframe.contentDocument ) Esto se cambia porque da un error molesto con IE8 
		{ // firefox
			alturaPagina = miIframe.contentDocument.height;
			miIframe.style.height = alturaPagina + 20 + "px";
		}
		else 
		{ // IE y demás
		    
			alturaPagina = miIframe.contentWindow.document.body.scrollHeight;
		}	
}
        
