codice:
tempo = getTimer();
pausa = 0;
function via() {
	onEnterFrame = function () {
		if (getTimer()-tempo>=pausa) {
			destino = random(6)+1;
			 loadMovie("file"+destino+".swf", vuoto); 
			tempo = getTimer();
			pausa = 20000;
			via();
		}
	};
}
via();