¡Atención!
La lista de inscriptos es referencial y puede variar.
var iframe = jQuery('iframe#listado');
function resizeIframe(obj) {
obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px';
}
iframe.hide();
jQuery('li.x-li-icon > a').click(function (e) {
e.preventDefault();
iframe.show();
iframe.attr('src', jQuery(this).attr('href'));
});