function advSearch()
{
	var briefNode=document.getElementById("dbintegration");
	var longNode=document.getElementById("dbintegration2");
	if(longNode.style.display=="none")
	{
		longNode.style.display="block";
		briefNode.style.display="none";
	}
	else
	{
		longNode.style.display="none";
		briefNode.style.display="block";
	}
}

function DisplayAmbito(str)
{
	var prefix="http://www.sistemauni.it/fileadmin/megliomilano/provincia/";
	if (str=='Ambito1.htm')
		window.open(prefix + str,"","HEIGHT=500,WIDTH=500,status=no");
	else
		 window.open(prefix + str,"","HEIGHT=400,WIDTH=500,status=no");
}