$(function(){
	$('a.nuevaventana').bind( 'click', function(){
		window.open( this.href );
		return false;
	});
});