// JavaScript Document
function pesquisar(){
	var buscaField = document.getElementById('busca');
	if(buscaField.value != "")
		location.href = "index.php?setor=busca&pesquisar="+buscaField.value+""
	else
		alert("Não deixe o campo de PESQUISA em branco") // Valida o campo de pesquisa
	}
	
//Envia busca com Enter
function submitenter(myfield,e)
{
var keycode;
var pesquisarField = document.getElementById('pesquisar');

if (window.event) keycode = window.event.keyCode;
else if (e) keycode = e.which;
else return true;

if (keycode == 13)
   {
   myfield.form.submit();
   location.href = "index.php?secao=busca&pesquisar="+pesquisarField.value+""
   return false;
   }
   else
   return true;
}

//Envio e Limpar
  function Submit()
  {
    document.contatoPhy.submit();
  }
  function Reset()
  {
    document.myform.nome.value = "";
    document.myform.assunto.value = "";
    document.myform.email.value = "";
    document.myform.mensagem.value = "";
  }

//Limpa input buscar
function clearinputText() {
  document.frm.name.value= "";
}
