
var win = null;

function popup() {
	win = window.open(this.href, 'socialboomark','scrollbars=yes,resizable=yes,top=100,left=100,status=yes,width=1000,height=600');

	setTimeout("win.focus()", 500);

	return false;
}

(function($) {
	$(function() {
		$(".social li:not(.not) a").click(popup);
	});
})(jQuery);
