

function zoom(act){
if(!act){
document.getElementById("buio").style.display="block";
document.getElementById("manifesto").style.display="block";
}else{
document.getElementById("buio").style.display="none";
document.getElementById("manifesto").style.display="none";
}

}


function fotoShow(url){
// alert(url);
if(url){
document.getElementById("fotosrc").src="images"+url;
document.getElementById("buio").style.display="block";
document.getElementById("foto").style.display="block";
window.location='#top';
}else{
document.getElementById("buio").style.display="none";
document.getElementById("foto").style.display="none";
}

}
