window.resizeIframe = function (obj) {
obj.style.height = ($(obj.contentWindow.document.body).find('div').first()[0].scrollHeight) + 'px';
$(obj.contentWindow.document.body).find('a').each(function(){
$(this).attr('target', '_blank');
var href = $(this).attr('href');
href = href.replace(/^.*q=(.*?)&.*$/, "$1");
$(this).attr('href', href);
});
}
$('.docs_import_div').each(function(){
var id = container.attr('data-id');
container.html('<iframe class="docs_import_frame" style="width: 100%; border-width: 0px; overflow: hidden;" scrolling="no" id="someId"></iframe>');
var url = '/docs_import.php?id=' + id;
var html;
jQuery.ajax({