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
    //----------
    window.open (Url, Nome, Propriedades);
  }
