function checar ()
{
	if (trim(document.FrmCadastro.nomecompleto.value) == "")
	{
		alert("O campo Nome deve ser preenchido.");
		document.FrmCadastro.nomecompleto.focus();
		return false;
	}
	
	if (document.FrmCadastro.uf.value == 0)
	{
		alert("Por favor, selecione seu Estado.");
		document.FrmCadastro.uf.focus();
		return false;
	}
	if (trim(document.FrmCadastro.ddd.value) == "" || document.FrmCadastro.ddd.value == "DDD")
	{
		alert("O campo DDD deve ser preenchido.");
		document.FrmCadastro.ddd.focus();
		return false;
	}
	if (trim(document.FrmCadastro.telefone.value) == "")
	{
		alert("O campo Telefone deve ser preenchido.");
		document.FrmCadastro.telefone.focus();
		return false;
	}
	if (document.FrmCadastro.categoria.value == 0)
	{
		alert("Por favor, selecione um categoria.");
		document.FrmCadastro.categoria.focus();
		return false;
	}

    if (trim(document.FrmCadastro.email.value) != "")
	{
		if (!VerificaEmail(document.FrmCadastro.email.value))
		{
			alert("E-mail inválido. Por favor, redigite.");
			document.FrmCadastro.email.focus();
			return false;
		}
	}

	
return true;

}
