$(function() { $('a[rel=popup]').each(function() { $(this).click(function() { var windowName = 'popup' + Math.round(Math.random() * 10000); window.open($(this).attr('href'), windowName, 'width=530, height=600, scrollbars=yes'); return false; }); }); });