$(document).ready(function() { if (! $('a[onclick="return showAddAnotherPopup(this);"]').length) { /* Credit: django.contrib.admin (BSD) */ var showAddAnotherPopup = function(triggeringLink) { var name = triggeringLink.attr( 'id' ).replace(/^add_/, ''); name = id_to_windowname(name); href = triggeringLink.attr( 'href' ); if (href.indexOf('?') == -1) { href += '?'; } href += '&winName=' + name; var height = 500; var width = 800; var left = (screen.width/2)-(width/2); var top = (screen.height/2)-(height/2); var win = window.open(href, name, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=no, width='+width+', height='+height+', top='+top+', left='+left) function removeOverlay() { if (win.closed) { $('#yourlabs_overlay').remove(); } else { setTimeout(removeOverlay, 500); } } $('body').append('