function cerca() {
    var err=0;
	var v1=document.getElementById('pid').value;
	var v2=document.getElementById('tid').value;
	 if ((v1=='') && (v2=='')) { 
		 if (v1=='') {
			alert('Opcions de cerca disponibles:\n- Provincia\n- Temātica\n- Provincia i Temātica');
			return false;
			v1.focus(); 
		 }		 		 
	 }
	 location.href='/blocs.php?pid='+v1+'&tid='+v2;
}