$(function() {
	$('a[rel*=popup_link]').click(function(e){
		window.open($(this).attr('href'), 'popWin', 'width=800,height=600,resizable=1,scrollbars=1,location=1,menubar=1');
        return false;
	});
});