function js_val_form_contato()
{
	with( document.form_contato )
	{
		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_departamento.value == "" )	
		{
			alert("Por favor, escolha o Departamento!");
			f_departamento.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;
	
	}
	
}