$(document).ready(function() {
        $('a.ligthbox').lightBox();
});

function abrir(pagina, largura, altura){
 var esquerda = (screen.width - largura)/2;
 var topo = (screen.height - altura)/2;

 window.open(pagina,'','height=' + altura + ', width=' + largura + ', top=' + topo + ', left=' + esquerda + ', Scrollbars=NO, resizable=NO, menubar=NO');
}
