function visualizza_immagine(prefisso, show, tot) {
	for (i=0; i<tot; i++) {
		document.getElementById(prefisso+i).style.display = "none";
	}
	document.getElementById(prefisso+show).style.display = "block";
	return false;
}
