function MM_openBrWindow(theURL,winName,features) { //v2.0
  v=window.open(theURL,winName,features);
  v.focus();
}
 function abrir(pagina, largura, altura) {
   // Definindo meio da tela
   var esquerda = (screen.width - largura)/2;
   var topo = (screen.height - altura)/2;

   // Abre a nova janela
   window.open(pagina,'','height=' + altura + ', width=' + largura + ', top=' + (topo-25) + ', left=' + (esquerda-5));
 }
