
$(function () {
	$('a.newwin').click(function () {
		return !window.open(this.href);
	});
});

