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