function goToStepSind()
	{
	post = true;

	strTexto = Trim(document.frmBoletim.SNome.value);
	if(strTexto == 0)
		{
		post = false;
		alert('É necessário informar seu nome completo!');
		document.frmBoletim.SNome.focus();
		return post;
		}
	strTexto = Trim(document.frmBoletim.SEmail.value);
	if(strTexto == 0)
		{
		post = false;
		alert('É necessário informar seu e-mail!');
		document.frmBoletim.SEmail.focus();
		return post;
		}

	if(post == true)
		{
		R = window.confirm("Confirme seus dados:\n\nSituação: Sindicalizado\nMatrícula: "+ document.frmBoletim.SMatricula.value +"\nCPF: "+ document.frmBoletim.SCPF.value +"\nNome: "+ document.frmBoletim.SNome.value +"\nE-mail: "+ document.frmBoletim.SEmail.value +"\n\nSeus dados estão corretos?");
		if (R == true)
			{
			document.frmBoletim.Tipo.value = '1';
			document.frmBoletim.action.value = "Step2";
			document.frmBoletim.submit();
			}
		}
	}

function goToStepNSind()
	{
	post = true;

	strTexto = Trim(document.frmBoletim.NNome.value);
	if(strTexto == 0)
		{
		post = false;
		alert('É necessário informar seu nome completo!');
		document.frmBoletim.NNome.focus();
		return post;
		}
	strTexto = Trim(document.frmBoletim.NEmail.value);
	if(strTexto == 0)
		{
		post = false;
		alert('É necessário informar seu e-mail!');
		document.frmBoletim.NEmail.focus();
		return post;
		}

	if(document.frmBoletim.pergA.checked == false && document.frmBoletim.pergB.checked == false && document.frmBoletim.pergC.checked == false)
		{
		post = false;
		alert('É necessário informar sua função!');
		return post;
		}

	strTexto = Trim(document.frmBoletim.RespTxt.value)
	if(document.frmBoletim.pergC.checked == true && strTexto == 0)
		{
		post = false;
		alert('É necessário preencher o campo "Especificar"!');
		document.frmBoletim.RespTxt.focus();
		return post;
		}

	if(post == true)
		{
		R = window.confirm("Confirme seus dados:\n\nSituação: Não sindicalizado\nNome: "+ document.frmBoletim.NNome.value +"\nE-mail: "+ document.frmBoletim.NEmail.value +"\n\nSeus dados estão corretos?");
		if (R == true)
			{
			document.frmBoletim.Tipo.value = '0';
			document.frmBoletim.action.value = "Step2";
			document.frmBoletim.submit();
			}
		}
	}


function goToDel()
	{
	post = true

	strTexto = Trim(document.frmBoletim.ExcEmail.value);
	if(strTexto == 0)
		{
		post = false;
		alert('É necessário informar o e-mail!');
		document.frmBoletim.ExcEmail.focus();
		return post;
		}

	if(post == true)
		{
		document.frmBoletim.action.value = "Del";
		document.frmBoletim.submit();
		}
	}