function WinPopUpOpen(targetUrl, targetParam, windowName, windowFeatures)
  {
  windowPesquisa = window.open(targetUrl+'?'+targetParam, windowName, windowFeatures);
  windowPesquisa.focus();
  }

function WinPopUp(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";
  windowPesquisa = window.open(targetUrl, windowName, windowFeatures);
  windowPesquisa.focus();
  }

function OpenAcomacs(estado)
  {
  WinPopUp('lista_acomacs.php?estado='+estado, '', '470', '450', 'no', 'yes', 'no', 'no', 'no', 'no');
  }

function imageView(img, path)
  {
  url = "image_view.php?img="+img+"&path="+path;

  imagem = window.open(url, 'imageView', 'location=no,status=no,scrollbars=no,toolbar=no,resizable=no,width=10,height=10');
  imagem.focus();
  }