function Limpar() {
	limpar = confirm('Você deseja realmente limpar o form_contatoulário?');
	if (limpar) {
		document.getElementById("form_contato").reset();
	}
}

function ValidarContato()
{
	if (document.getElementById("form_contato").nome.value=="") {
		alert("O nome é um campo obrigatório!");
		document.getElementById("form_contato").nome.focus();
		return ;
	}
	if (document.getElementById("form_contato").email.value=="") {
		alert("O e-mail é um campo obrigatório!");
		document.getElementById("form_contato").email.focus();
		return ;
	}
	else {
		if (!Validar_Email(document.getElementById("form_contato").email.value)) {
			alert("E-mail inválido!");
			document.getElementById("form_contato").email.select();
			return ;
		}
	}
	if (document.getElementById("form_contato").telefone.value=="") {
		alert("O telefone é um campo obrigatório!");
		document.getElementById("form_contato").telefone.focus();
		return ;
	}
	if (document.getElementById("form_contato").mensagem.value=="") {
		alert("A mensagem é um campo obrigatório!");
		document.getElementById("form_contato").mensagem.focus();
		return ;
	}
	document.getElementById("form_contato").submit();
}
