function sendForm()
{
   atmCLL('Fundacao_CadastroVoluntarios_Enviar');
   fObj = document.form1
   arrItems = []
   fName = fObj.name.value
   fCpf = fObj.cpf.value
   fEmail = fObj.email.value
  
   if(!checkEmail(fEmail))
   {
      alert("Por favor preencha o E-mail com um endereço válido.");
	   return;
   }
   
   if(!validCPF(fCpf))
   {
      alert("Por favor preencha o seu CPF corretamente somente com números.");
	   return;         
   }
   
   if(validempty(fName))
   {
      alert("Por favor preencha o seu nome.");
	   return;   
   }
   
   arrItems.push(["name",fName])
   arrItems.push(["cpf",fCpf])
   arrItems.push(["email",fEmail])
   sendData("http://www.predicta.org/sendFormVolunteer.php",arrItems,'processReqChange("Fundacao_CadastroVoluntarios_Enviar_Sucesso")')   
}
