$(document).ready(function() {
	$('a.new-window').click(function(){
		window.open(this.href, 'mbvc', 'height=400,width=500,status=0,toolbar=0,menubar=0,location=0,scrollbars=1');
		return false;
	});
});