function validarCadastroInformativos()
{
	if($('nome').value == "")
	{
		$('nome').focus();
		alert('O Campo Nome é obrigatório!');
		return false;
	}
	if($('sexo').value == "")
	{
		$('sexo').focus();
		alert('O Campo Sexo é obrigatório!');
		return false;
	}
	if((!isNumber($('data_nascimento_dia').value) || $('data_nascimento_dia').value == "")
	&& (!isNumber($('data_nascimento_mes').value) || $('data_nascimento_mes').value == "")
	&& (!isNumber($('data_nascimento_ano').value) || $('data_nascimento_ano').value == ""))
	{
		$('data_nascimento_dia').focus();
		alert('O campo Data Nascimento permite somente números!');
		return false;
	}
	if($('cidade').value == "")
	{
		$('cidade').focus();
		alert('O Campo Cidade é obrigatório!');
		return false;
	}
	if($('id_estado').value == "")
	{
		$('id_estado').focus();
		alert('O Campo Estado é obrigatório!');
		return false;
	}
	if(!isEmail($('email').value))
	{
		$('email').focus();
		alert('E-mail inválido!');
		return false;
	}
	if($('id_profissao').value == "")
	{
		$('id_profissao').focus();
		alert('O Campo Tipo é obrigatório!');
		return false;
	}
	if($('id_atuacao').value == "")
	{
		$('id_atuacao').focus();
		alert('O Campo Atuação é obrigatório!');
		return false;
	}
	if($('palavra_chave').value == "")
	{
		$('palavra_chave').focus();
		alert('Para autenticar seu cadastro, digite o conteúdo da imagem abaixo!');
		return false;
	}
	
	return true;
}