

$(function () {
	$('.newwin').click(function (e) {
		if (window.open(this.href)) e.preventDefault();
	})
});