// Settaggi modifica per la classe Jx
JxAlert	=	"Caricamento in corso...";
JxDebug = DEBUG;

var ProgressBarImage = new Image();
ProgressBarImage.src = appz['PathCommonImages'] + "progress_bar.gif";

// Si collega alla barra di progressione della classe jx.class.js
function Progress( state )
{	
	if (typeof(state)=='undefined') state = true;

	if (typeof(CreateProgressBar)=='function')
	{
		if (state)
		{
			if (oID(IdDivProgress)==null)
			{
				CreateProgressBar();		
			}
			oID(IdDivProgress).style.display = "block";
		}
		else
		{
			if (oID(IdDivProgress)!=null)
			oID(IdDivProgress).style.display = "none";
		}
	}
}
