
function js_valida_form_contato()
{
	with( document.form_contato )
	{
		if( f_nome.value == "" )
		{
			alert("Por favor, digite o seu Nome Completo");
			f_nome.focus();
			return false;
		}
		
		if( f_email.value == "" )
		{
			alert("Por favor, digite o seu E-mail");
			f_email.focus();
			return false;
		}		
		
		if( f_assunto.value == "" )
		{
			alert("Por favor, digite o Assunto");
			f_assunto.focus();
			return false;
		}		
		
		if( f_mensagem.value == "" )
		{
			alert("Por favor, digite a Mensagem");
			f_mensagem.focus();
			return false;
		}		
	}
}
