function canviFoto(total){
	
	nfoto=Math.floor(Math.random()*total);	
	document.getElementById('img').src=eval("img"+nfoto).src;	
	setTimeout("canviFoto("+total+")",2000);
}

function comprovarForm(dades){	
	camps=dades.split(",");
	
	for(i=0;i<camps.length;i++){
		if(camps[i]=='email'){
			if ((document.getElementById('email').value =="") || !(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(document.getElementById('email').value))){
      			alert("Email incorrecto.");
      			return (false);
    		}
		}else{
			text=document.getElementById(camps[i]).value;
			if (document.getElementById(camps[i]).value =="" || text.indexOf("(*)")>0){
      			alert(camps[i]+" incorrecto.");
      			return (false);
    		}
		}
	}
	
	return (true);
}