// JavaScript Document
var indice=1;

function aprifoto(link,width,height) {
	var opzioni = 'width='+width+',height='+height;
	window.open(link,'foto',opzioni);
	return false;
}

function showhide(cat,piuomeno,quante) {
	if(piuomeno=='piu') {
		indice++;
		if(indice>quante) indice=1;
	}
	else {
		indice--;
		if(indice==0) indice=quante;
	}
	
	var cnt=1;
	var nascondi;
	while(cnt>0 & cnt<100) {
		nascondi = document.getElementById(cat+cnt);
		if(nascondi!=null) {
			document.getElementById(cat+cnt).style.display='none';
			cnt++;
		}
		else {
			cnt=0;
		}
	}

	// mostra
	var mostra=cat+indice;
	document.getElementById(mostra).style.display='';
	document.getElementById('dida').innerHTML='foto ' + indice + '/' + quante;
}
