$(document).ready(
    function() {
        $('a.linkRevista').each(function() {
        		$(this).bind('click',
    				function() {
        				window.open($(this).attr('href'), 'Revista bic', 
        					'menubar=no, toolbar=no directories=no'
        				);
        				return false;
        			}
        		);
        	}
        );
    }
);