$(document).ready(function(){
	$("a.nueva-ventana_NO").click(function(event) {
		event.preventDefault();
		window.open(this.href);
	});
}); 

