function enviarContato(form){
	/*
	if(form.setor.value==""){
		alert('Selecione um Setor');
		form.setor.focus();
		return (false);
	}
	*/
	if (form.nome.value==""){
		  alert('Preencha o campo Nome');
		  form.nome.focus();
		  return (false);	
	}
	if ( !form.cursando[0].checked && !form.cursando[1].checked ) 
		{
		  alert("Selecione uma opção para Está cursando na Wizard?");
		  return false;
	}	
	if (form.email.value==""){
		  alert('Preencha o campo Email');
		  form.email.focus();
		  return (false);	
	}
	if (!verificarDados('email',form.email.value)){
		  alert ('Caracteres inválidos no campo e-mail');
		  elementFocus(form.email);
		  return (false);
	}
	if (form.email.value.length<9 || form.email.value.indexOf("@")==-1 || form.email.value.indexOf(".")==-1){
		  alert('e-mail inválido, preencha corretamente seu e-mail');
		  elementFocus(form.email);
		  return (false);	
	}
	if (form.fone.value==""){
		  alert('Preencha o campo Telefone');
		  form.fone.focus();
		  return (false);	
	}
	if (form.assunto.value==""){
		  alert('Preencha o campo Assunto');
		  form.assunto.focus();
		  return (false);	
	}	
	if (form.mensagem.value==""){
		  alert('Preencha o campo Mensagem');
		  form.mensagem.focus();
		  return (false);	
	}		
  	  	 		
	return (true);	
}
