
$(function() {
	$(".newwin").click(function() {
		window.open(this.href, null, "width=1100, menubar=no, toolbar=no, scrollbars=yes, resizable=yes");
		return false;
	});
});

