function valida_form(cont){
	
if(cont.empresa.value ==""){
      alert("Please, fill in all fields!");
      cont.empresa.focus();
      return false;
	}
	
if(cont.nome.value ==""){
      alert("Please, fill in all fields!");
      cont.nome.focus();
      return false;
	}

if ((cont.email.value.indexOf("@")<0) && (cont.email.value.indexOf(".")<0)){
      alert("Please, fill in all fields!");
      cont.email.focus();
      return false;
	}
	
if(cont.telefone.value ==""){
      alert("Please, fill in all fields!");
      cont.telefone.focus();
      return false;
	}
	
if(cont.endereco.value ==""){
      alert("Please, fill in all fields!");
      cont.endereco.focus();
      return false;
	}
	
if(cont.numero.value ==""){
      alert("Please, fill in all fields!");
      cont.numero.focus();
      return false;
	}
	
if(cont.areaContato.value ==""){
      alert("Please, fill in all fields!");
      cont.areaContato.focus();
      return false;
	}
	
if(cont.msg.value ==""){
      alert("Please, fill in all fields!");
      cont.msg.focus();
      return false;
	}
	
	return true;
}

































