function $(id)
{
	return document.getElementById(id);
}

function validarContato()
{
	if($('nome_contato').value == "")
	{
		$('nome_contato').focus();
		alert('O Campo Nome é obrigatório!');
		return false;
	}
	if(!isNumber($('telefone_ddd').value) || $('telefone_ddd').value == "")
	{
		$('telefone_ddd').focus();
		alert('O Campo DDD permite somente números!');
		return false;
	}
	if(!isNumber($('telefone').value) || $('telefone').value == "")
	{
		$('telefone').focus();
		alert('O Campo Telefone permite somente números!');
		return false;
	}
	if(!isEmail($('email_contato').value))
	{
		$('email_contato').focus();
		alert('E-mail inválido!');
		return false;
	}
	if($('id_cidade').value == "")
	{
		$('id_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($('departamento').value == "")
	{
		$('departamento').focus();
		alert('O Campo Departamento é obrigatório!');
		return false;
	}
	if($('assunto').value == "")
	{
		$('assunto').focus();
		alert('O Campo Assunto é obrigatório!');
		return false;
	}
	if($('id_conheceu').value == "")
	{
		$('id_conheceu').focus();
		alert('O Campo Como Conheceu é 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;
}