function WinPopUpOpen(targetUrl, windowName, x, y, escala, scroll, tool, localiz, barramenu, barstatus)
  {
  var windowFeatures = "width=" + x + ", height=" + y + ", top=30, left=30, resizable=" + escala + ", scrollbars=" + scroll + ", toolbar=" + tool + ", location=" + localiz + ", menubar=" + barramenu + ", status=no,dependent=yes";
  windowPesquisa = window.open(targetUrl, windowName, windowFeatures);
  windowPesquisa.focus();
  }

