function js_val_form_contato()
{
	with( document.form_fale_conosco )
	{
		
		if( f_departamento.value == "" )	
		{
			alert("Por favor, selecione o Departamento");
			f_departamento.focus();
			return false;
		}
				
		if( f_nome.value == "" )	
		{
			alert("Por favor, digite seu Nome");
			f_nome.focus();
			return false;
		}
		
		if( f_email.value == "" )	
		{
			alert("Por favor, digite 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;
		}
		return true;
	
	}
	
}	

