function validaParametriDiRicerca(){
	var cap=document.getElementById('cap').value;
	var comune=document.getElementById('comune').value;
	var provincia=document.getElementById('provincia').value;
	var via=document.getElementById('via').value;
	var trovaTuttoDB = '%';
	var trovaTuttoMe = '*';
	
	//inizialmente il bottone Cerca e disabilitato
	document.getElementById('Cerca').disabled=false;
	
if(provincia!='Seleziona' && comune==''){	document.getElementById('Cerca').disabled=false;}

	if(provincia!='Seleziona' && comune.length>3){
		document.getElementById('Cerca').disabled=false;
	}
		
	if(cap.length==5){
		document.getElementById('Cerca').disabled=false;
	}

	if(via.length>4 && via!='' && comune.length>3 && provincia!='Seleziona'){
		document.getElementById('Cerca').disabled=false;
	}

//
//


if(provincia!='Seleziona' && comune==trovaTuttoDB){
		document.getElementById('Cerca').disabled=false;
	}
if(provincia!='Seleziona' && comune==trovaTuttoMe){
		document.getElementById('Cerca').disabled=false;
	}

		
}

