$(function(){
	$('a.new-window').click(function(){
		window.open(this.href, "new", "location=0,width=600,height=200,scrollbars=no,resizable=no");
		return false;
	});
});