// JavaScript Document

function checkContato(){
	
	if(document.faleConosco.nome.value == ''){
		alert('Informe seu nome');
		document.faleConosco.nome.focus();
		return false;
	}
	
	if(document.faleConosco.from.value == ''){
		alert('Informe seu e-mail');
		document.faleConosco.from.focus();
		return false;
	}
	
	return true;
	
}