function janela(url,largura,altura) {
  var w = (screen.width - largura)/2;
  var h = (screen.height - altura)/2 - 20;
  remote = open(url, "", "resizable=no,scrollbars=yes,width="+largura+",height="+altura+",left="+w+",top="+h);
}

