$(document).ready(function(){

    $('#fotoTable a').click(function(e){
        var strWindowFeatures = "width=900,height=650,menubar=no,location=no,resizable=yes,scrollbars=yes,status=no";
        window.open($(this).attr('href'), 'RZ-Galeria', strWindowFeatures)

        e.preventDefault();
    });

});

