function valida (){
	if ((document.form_contato.nome.value == '') || (document.form_contato.email.value == '') || (document.contato.msg.value == '')) {
		window.alert('Você precisa preencher Nome,E-mail, Assunto e Mensagem! Tente novamente.');
		return false;
	} else {
		return true;
	}
}
