function validateForm(thisform){
    var digits=" .-,/+0123456789";
		var temp;
	 // Valido nom
	 ////////////////////////////////////////////////////////////////////////////// 
    if (thisform.Nom.value==""){
      alert("Si us plau, indiqui el seu nom.");
      thisform.Nom.focus();
			thisform.Nom.style.background="#771223";
			thisform.Nom.style.color="#FFFFFF";
      return false;
    }
		else {
		  thisform.Nom.style.background="#FFFFFF";
			thisform.Nom.style.color="#000000";
		}
		
		// Valido cognoms
	 ////////////////////////////////////////////////////////////////////////////// 
    if (thisform.Cognoms.value==""){
      alert("Si us plau, indiqui els seus cognoms.");
      thisform.Cognoms.focus();
			thisform.Cognoms.style.background="#771223";	
			thisform.Cognoms.style.color="#FFFFFF";		
      return false;
    }
		else {
		  thisform.Cognoms.style.background="#FFFFFF";
			thisform.Cognoms.style.color="#000000";
		}
		
		// Valido telefon
	////////////////////////////////////////////////////////////////////////////// 
    if (thisform.Telefon.value==""){
      alert("Si us plau, indiqui el seu telèfon.");
      thisform.Telefon.focus();
			thisform.Telefon.style.background="#771223";
			thisform.Telefon.style.color="#FFFFFF";			
      return false;
		}
		else {
		  thisform.Telefon.style.background="#FFFFFF";
			thisform.Telefon.style.color="#000000";
		}

	  if (thisform.Telefon.value.length!=9){
	  alert("Número de telèfon incorrecte. Ha de tenir nou xifres.");
	  thisform.Telefon.focus();
		thisform.Telefon.style.background="#771223";
		thisform.Telefon.style.color="#FFFFFF";			
	  return false;
	  }
	  else {
		  thisform.Telefon.style.background="#FFFFFF";
			thisform.Telefon.style.color="#000000";
		}

		for (var i=0;i<thisform.Telefon.value.length;i++){
      temp=thisform.Telefon.value.substring(i,i+1)
      if (digits.indexOf(temp)==-1){
        alert("Número de telèfon incorrecte. Només pot contenir números.");
        thisform.Telefon.focus();
				thisform.Telefon.style.background="#771223";
				thisform.Telefon.style.color="#FFFFFF";
        return false;
      }
		else {
		  thisform.Telefon.style.background="#FFFFFF";
			thisform.Telefon.style.color="#000000";
		}
    }
		
	
	// Valido e-mail
	////////////////////////////////////////////////////////////////////////////// 
    if (thisform.email.value==""){
      alert("Si us plau, indiqui la seva adreça d'e-mail.");
      thisform.email.focus();
			thisform.email.style.background="#771223";
			thisform.email.style.color="#FFFFFF";		
      return false;
    }
		else {
		  thisform.email.style.background="#FFFFFF";
			thisform.email.style.color="#000000";
		}	
	
	if (thisform.email.value!="") {
      if (thisform.email.value.indexOf("@")==-1 || thisform.email.value.indexOf(".")==-1 || thisform.email.value.indexOf(" ")!=-1 || thisform.email.value.length<6) {
        alert("L'adreça d'e-mail no és correcta.");
        thisform.email.focus();
				thisform.email.style.background="#771223";
				thisform.email.style.color="#FFFFFF";					
        return false;
      }
    }
  else {
		  thisform.email.style.background="#FFFFFF";
			thisform.email.style.color="#000000";
		}
		
		// Valido condicions
	 ////////////////////////////////////////////////////////////////////////////// 
	if(thisform.Accepto_condidions.checked){
		
		
	}else{
		alert("Ha d'acceptar les condicions");
     	 thisform.Accepto_condidions.focus();
		 return false;
	}
	
return true;
}
