
<!--
function AutoPopup(img){
  foto1= new Image();
  foto1.src=(img);
  viewFoto(img);
  
}

function viewFoto(img){
  largh=foto1.width+20;
  altez=foto1.height+20;
	x = (screen.width-largh)/2;
	y = (screen.height-altez)/2;
  stringa="width="+largh+",height="+altez+",left="+x+",top="+y;
  finestra=window.open(img,"",stringa);
}
-->