<!--
  function pesquisaAvancada() {
    var preco = document.getElementById('preco');
    var tipo = document.getElementById('tipo');
    var pais = document.getElementById('pais');
    var produtor = document.getElementById('produtor');
    var texto = document.getElementById('chave_pesquisa');

    if ( (texto.value=="") && 
		(preco.selectedIndex<=0) && (pais.selectedIndex<=0) && 
        (tipo.selectedIndex<=0)  && (produtor.selectedIndex<=0) ) {
      alert("Por favor, selecione pelo menos uma característica!");
      return;
    }
    window.location.href="produtos.asp?preco=" + preco.value + "&pais=" + pais.value + 
						 "&tipo=" + tipo.value + "&produtor=" + produtor.value + "&chave_pesquisa=" + texto.value;
  }

  function ordenar() {
    if (document.forms[0].pagina) {
      var f = document.forms[0];
      if (f.ordem.selectedIndex>0)
        f.submit();
    }
  }

  function procurar() {
    var texto = document.getElementById('chave_pesquisa');
    var dep = "";
    
    if (document.getElementById('dep_pesquisa'))
      dep = document.getElementById('dep_pesquisa').value;

    if (texto.value=="") {
      alert("Por favor, informe o que você deseja pesquisar!");
      texto.focus();
      return;    
    }
    window.location.href="produtos.asp?dep_pesquisa=" + dep + "&chave_pesquisa=" + texto.value;
  }
//-->
