function PopUp(Nome, Url, Esquerda, Topo, Largura, Altura, Scroll)
{
  var Propriedades;
  //
  if (Esquerda=='')
  {Esquerda = (screen.width / 2) - (Largura / 2)};
  //
  if (Topo=='')
  {Topo= (screen.height / 2) - (Altura / 2)};
  Propriedades = 'scrollbars='+Scroll+',width='+Largura+',height='+Altura+',left='+Esquerda+',top='+Topo;
  //scrollbars=no,menubar=no,resizable=0,location=no,screenX=50,screenY=100,width=450,height=360
  var wdwOpened = window.open (Url, Nome, Propriedades);
  wdwOpened.focus();
}

