function test_subscripcio(form)
{
	var ret=true;
	var mailValid=true;
	//política de protecció de dades
	if(!form.condicions.checked) ret=false;

	//provincia
	if(form.provinciaList.selectedIndex==0) ret=false;
	//sexe
	if(!testCheck(form.Sexe_0) && !testCheck(form.Sexe_1)){
		//ret=validatePrompt(form.element_37_1,'requerit_37',"(Obligatorio)");
		ret=false;
	}else{
		//escriureAvis('requerit_37',"<font color='#999999'>(*)</font>");
		//ret=true;
	}
	//data de naixament
	if (form.dia.selectedIndex==0 || form.mes.selectedIndex==0 || form.any.selectedIndex==0 ){
		ret=false;
	}
	//e-mail
	if(!testmail(form.mailRepeat,'requerit_50',"(*) Required"))  ret=false;
	
	//e-mail
	if(!testmail(form.mail,'requerit_50',"(*) Required"))  ret=false;
	
	if(form.mail.value!=form.mailRepeat.value){
		ret=false;
		mailValid=false;
	}
	//nom
	if (!testCamp(form.nom,'requerit_10',"(*) campo obligatorio")) ret=false;
	
	if(!ret && mailValid){
		alert("Camps Incomplets o invàlids. Revisa el formulari.");
	}else if(!ret && !mailValid){
		alert("Has d'escriure correctament el teu correu electrònic.");
	}else{
		form.submit();
	}
	//return ret;
}
