
// Script para forçar a entrada de dados em formulário
function checaIndex()
{
   with(document.form)
   {
      if (nome.value.length == 0) {
            alert('Entre com nome.\n');
            nome.focus();
            return false;
      }
      if (email.value.length == 0) {
            alert('Entre com e-mail.');
            email.focus();
            return false;
      }
	  if (participante.value.length == 0) {
            alert('Entre com nome do Participante.');
            participante.focus();
            return false;
      }
	  if (fone.value.length == 0) {
            alert('Entre com o telefone.');
            fone.focus();
            return false;
      }
      return true;
    }
}
