function apriimg(path){
	var url="img/"+path;
	window.open(url, path, 'width=300px , height=300px')
	
	}
function avanti(){
	var path="img/";
	var indice=0;
	if(indice<=20){indice++}
	else{indice=0;}
	//documentGetElementByid(incr).
	//document.incr.value=path+=indice+".jpg";
	
	div = document.getElementById('cmbImg'); //definisco l'id del div
	div.innerHTML = path+=indice+".jpg;" //inserisco del testo HTML nel div
}
function incremento(){
	var i=0;
	var fine=10;
	var path="img/";
	while(i<=10){
		document.incr=path+=i+".jpg";
	}
	
}

function switchImage(){
	    inizioImmagine++;
	document.python.src = "python" + inizioImmagine + ".jpg";
	if (inizioImmagine < altreImmagini) {
		setTimeout("switchImage()", 2000);
		// dopo due secondi cambio immagini        
	}             
}             
