// JavaScript Document
function enviarcontato(){
	
	if(document.f_contato.f_nome.value=="" || document.f_contato.f_nome.value.length < 8)
	{
		alert( "Preencha campo Nome corretamente!" );
			document.f_contato.f_nome.focus();
				return false;
	}
	
		
	if( document.f_contato.f_email.value=="" || document.f_contato.f_email.value.indexOf('@')==-1 || document.f_contato.f_email.value.indexOf('.')==-1 )
	{
		alert( "Preencha campo E-mail corretamente!" );
			document.f_contato.f_email.focus();
				return false;
	}

	if (document.f_contato.f_mensagem.value=="")
	{
		alert( "Preencha o campo MENSAGEM!" );
			document.f_contato.f_mensagem.focus();
				return false;
	}	
	
return true;
}


