 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');
 }