codice:
function preloadIMG() {
	var car = holder.getBytesLoaded();
	var tot = holder.getBytesTotal();
	var perc = Math.round((car/tot)*100);
	barra._xscale = perc;
	if( barra._visible == false ) {
		barra._visible = true;
	}
	if( car >= tot && tot !== -1 ) {
		holder._x = Math.round((740 - holder._width)/2);
		holder._y = Math.round((390 - holder._height)/2); 
		barra._visible = false;
		holder._alpha = 100;
		clearInterval(prel);
		// return;
		// ??? cancelli l'intervallo
		// quindi quando e' qui' finisce da sola ...
	}
}