function ControlloInteri(scheda, sNomeAss) {
		
   	if (document.scheda.Quantita.value > 0) 
   	{
   		return (true);
   	}
   	else {
   		// ** Var intArray mi restituisce il valore dell'array (in base alle caselle di testo create)
   		var numQta = document.scheda.Quantita.length;
			
   		// ** Ciclo for che controlla l'inserimento di almeno una quantita nel form
   		for (i = 0; i < numQta; i++)
   		{
			
   		// ** Controlla che siano stati inseriti valori <> 0
   			// alert (i + " -- " + document.scheda.Quantita[i].value)
   			if (document.scheda.Quantita[i].value > 0)
   			   {  
   					return true;
   			   }
   		}	

   		alert("Inserire almeno una quantità maggiore di zero in corrispondenza\ndi uno dei " +  sNomeAss + " che si trovano sotto la foto")
   		location.href = "#assortimenti"
   		return (false);
   	}
}