$(document).ready(function() {
    var aTags = $('.vid-gallery a');
    aTags.each(function() {
        if (!$(this).hasClass('locked')) {
            $(this).click(function(e) {
                e.preventDefault();
                var url = $(this)[0].href;
                var windowprops = "width=846,height=645,location=no,toolbar=no,menubar=no,scrollbars=yes,resizable=yes";
                window.open(url, "", windowprops);
            });
        }
    });
});