// requires "prototype.js"

Event.observe(window, "load", function() {
	$A(document.getElementsByClassName("new_window")).each( function(e) {
		if (e.tagName.toLowerCase() == "a") {
			e.onclick = function() {
				window.open(this.href, "_blank", "");
				return false;
			};
		}
	});
});
