$(document).ready(function() {
	$("a.new_window").click(function(index) {
		new_win = window.open($(this).attr('href'), 'name_popup') // Pop up a window to that URL
		if (window.focus) { new_win.focus() } // Give it focus if possible
		return false; // Keep from following the standard href
	});
});

