
function PrevFoto(img){
  foto1= new Image()
  foto1.src=(img)
  Controlla(img)
}
function Controlla(img){
  if((foto1.width!=0)&&(foto1.height!=0)){
    viewFoto(img);
  }
  else{
    funzione="Controlla('"+img+"')";
    intervallo=setTimeout(funzione,20);
  }
}
function viewFoto(img){
  largh=foto1.width+15
  altez=foto1.height+25
  posY=50
  posX=100
  stringa="width="+largh+",height="+altez+",top="+posX+",left="+posY;
  finestra=window.open(img,"",stringa);
	}



 n=0
 foto=new Array()
 foto[0]="images/foto_ristorante/im_ristorante.jpg"
 foto[1]="images/foto_ristorante/im_giuseppe.gif"
 foto[2]="images/foto_ristorante/im_patrizia.gif"
 foto[3]="images/foto_ristorante/img_cuochi.jpg"
 foto[4]="images/foto_ristorante/img_forno.jpg"
 foto[5]="images/foto_ristorante/img_sala_principale.jpg"
 foto[6]="images/foto_ristorante/img_saletta.jpg"
 


 function ava() {
 	if(n<6) {
		n++
		document.foto.src=foto[n]
	  }
 }
  function ind() {
	if(n>0) {
		n--
		document.foto.src=foto[n]		
	}
 }

 

















