function espandiechiudi(mioid)
{
	for(indice=0;indice<1000;indice++)
	{
		etichettaid1="gruppomenunum"+indice;
		elemento1=document.getElementById(etichettaid1);
		if(elemento1)
		{
			elemento1.style.display='none';
		}
		
		etichettaid1="div2puntini"+indice;
		elemento1=document.getElementById(etichettaid1);
		if(elemento1)
		{
			elemento1.style.display='block';
		}
	}	
		
	etichettaid2="gruppomenunum"+mioid;
	elemento2=document.getElementById(etichettaid2);
	elemento2.style.display='block';
	
	etichettaid2="div2puntini"+mioid;
	elemento2=document.getElementById(etichettaid2);
	elemento2.style.display='none';
}