	function ricerca(valore){
	if(valore == ''){
			alert('Inserisci un valore per la ricerca');
			return false;
		}else{
			document.formCerca.submit();
		}
		}


function openPage(ind){
var list= document.getElementById("navi");

var destination = ind;
	if (destination !='nopage') 
	window.open(destination,'_self');
	//{location.href = destination;}
	else
	{
		alert('Attenzione, la scelta effettuata non è valida');
		return false;
	}
	
	}