function valida(theForm)
{

  if (theForm.nome.value == ""){
    alert("Você precisa informar o seu nome !");
    theForm.nome.focus();
    return (false); }
	
  if (theForm.tel.value == ""){
    alert("Você precisa informar o seu telefone!");
    theForm.tel.focus();
    return (false); }
	
  if (theForm.email.value == ""){
    alert("Você precisa informar um email para contato!");
    theForm.email.focus();
    return (false); }	
		
  if (theForm.email.value.indexOf('@', 0) == -1 ||
      theForm.email.value.indexOf('.', 0) == -1)
  { 
    alert("O e-Mail informado é inválido. Informe o e-mail correto."); 
    theForm.email.focus(); 
    return (false); 
  }  
	
    if (theForm.cidade.value == ""){
    alert("Você precisa informar sua cidade!");
    theForm.cidade.focus();
    return (false); }
	
  if (theForm.conheceu.value == "Outros"){
	if(theForm.outros.value == ""){
    alert("Você precisa informar como conheceu nosso site!");
    theForm.outros.focus();
    return (false); } }
	
  if (theForm.mensagem.value == "") {
    alert("Informe a sua mensagem !");
    theForm.mensagem.focus();
    return (false); }  

	    
return (true);
}