﻿function validar(){
    if (document.registro.nom.value.length==0){
       alert("El camp 'Nom' és obligatori");
       document.registro.nom.focus();
       return 0;
    }
	
	if (document.registro.cognoms.value.length==0){
       alert("El camp 'Cognoms' és obligatori");
       document.registro.cognoms.focus();
       return 0;
    }
	
	if (document.registro.email.value.length==0){
       alert("El camp 'E-mail' és obligatori");
       document.registro.email.focus();
       return 0;
    }
	
	
	if (document.registro.codi.value.length==0){
       alert("El camp 'Codi' és obligatori");
       document.registro.codi.focus();
       return 0;
    }
	
	if (document.registro.tipologia.selectedIndex==0){
       alert("El camp 'Tipologia' ha de ser sel·leccionat");
       document.registro.tipologia.focus();
       return 0;
    }
	
	if (document.registro.lopd.checked==false){
       alert("Les condicions del servei han de ser acceptades");
       return 0;
    }
	
	document.registro.action ="http://ribals.com/web/forms/registre_met.php";
	document.registro.submit();
}
