function sendContato() {

	if (document.frmContato.nome.value=="")
	{
		alert("Digite seu Nome");
		document.frmContato.nome.focus();
		errors="1";
		return false;
	}
	
	if (document.frmContato.email.value=="")
	{
		alert("Digite seu Email");
		document.frmContato.email.focus();
		errors="1";
		return false;
	}
	
	if (document.frmContato.telefone.value=="")
	{
		alert("Digite seu Telefone");
		document.frmContato.telefone.focus();
		errors="1";
		return false;
	}
	
	if (document.frmContato.assunto.value=="")
	{
		alert("Digite um Assunto");
		document.frmContato.assunto.focus();
		errors="1";
		return false;
	}
	
	if (document.frmContato.msg.value=="")
	{
		alert("Digite sua Mensagem");
		document.frmContato.msg.focus();
		errors="1";
		return false;
	}
	
	document.MM_returnValue = (errors = '');
	if (errors == 0) {
	frmContato.submit();
	}
}