
var Img_Selezionata;
Img_Selezionata = 1; 

function ApriImgZoom(Sezione){
	Pagina_IMG = "zoom/ZoomIMG.cfm?Sezione=" + Sezione;
	window.open(Pagina_IMG,'ZOOM_IMG','width=630, height=550, scrollbars=yes, left=2, top=2, target=_top');
}

function CambiaIMG(STATO_img,sezione){
	if (STATO_img == "Prec") Img_Selezionata = Img_Selezionata - 1;
	else if (STATO_img == "Succ") Img_Selezionata = Img_Selezionata + 1;
	if (Img_Selezionata == 5){
		document.getElementById("DIV_Prec").style.visibility="visible";
		document.getElementById("DIV_Succ").style.visibility="hidden";		
	}
	else if (Img_Selezionata == 1){
		document.getElementById("DIV_Prec").style.visibility="hidden";
		document.getElementById("DIV_Succ").style.visibility="visible";		
	}
	else{
		document.getElementById("DIV_Prec").style.visibility="visible";
		document.getElementById("DIV_Succ").style.visibility="visible";		
	} 	
	if (sezione == "Mozz_Marghe"){
		if (Img_Selezionata == 1) NUOVA_img = "../img/fotoPopUp/Margherita_1.jpg";
		else if (Img_Selezionata == 2) NUOVA_img = "../img/fotoPopUp/Margherita_2.jpg";
		else if (Img_Selezionata == 3) NUOVA_img = "../img/fotoPopUp/Margherita_3.jpg";
		else if (Img_Selezionata == 4) NUOVA_img = "../img/fotoPopUp/Margherita_4.jpg";
		else if (Img_Selezionata == 5) NUOVA_img = "../img/fotoPopUp/Margherita_5.jpg";		
	}
	else if (sezione == "Pasta_Dante"){
		if (Img_Selezionata == 1) NUOVA_img = "../img/fotoPopUp/PastaDante_1.jpg";
		else if (Img_Selezionata == 2) NUOVA_img = "../img/fotoPopUp/PastaDante_2.jpg";
		else if (Img_Selezionata == 3) NUOVA_img = "../img/fotoPopUp/PastaDante_3.jpg";
		else if (Img_Selezionata == 4) NUOVA_img = "../img/fotoPopUp/PastaDante_4.jpg";
		else if (Img_Selezionata == 5) NUOVA_img = "../img/fotoPopUp/PastaDante_5.jpg";				
	}
	document.IMG_ZOOM.src = NUOVA_img;
}
