jQuery(document).ready(function() {
  $('.ventanaEmergente').click(function(e) {
    e.preventDefault();

    var opciones="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=920, height=500, top=85, left=140";
    window.open(e.currentTarget.href, "", opciones);

    return false;
  });
});
