//// APRI POP-UP ///////////////////////////////////////////////////////////////

function apriPop(url,x,y,t,l){
	
l=Math.floor((screen.width-x)/2);
t=Math.floor((screen.height-y)/2);

win=window.open(url,'p','toolbar=no,top='+t+',left='+l+',location=no,directories=no,menubar=no,scrollbars=yes,resizable=0,width='+x+',height='+y+'');
	win.focus();
}
////////////////////////////////////////////////////////////////////////////////
function ricercaVerify(what) {
	prov_label_input=document.getElementById("prov-label-input");
	reg_label_input=document.getElementById("reg-label-input");
	// campi
	if (what=="provincia") {
		reg_label_input.style.display="none";
		prov_label_input.style.display="inline";
	} else if (what=="regione") {
		reg_label_input.style.display="inline";
		prov_label_input.style.display="none";
	} else {
		reg_label_input.style.display="none";
		prov_label_input.style.display="none";		
	}
}