$( function() {
	
	$('a.new-window').click(function(){
		window.open(this.href, 'newwindowpolo', 'width=980, height=654, resizable=0');
		return false;
	});

});
