function LargePics(img,title2){
  var ua=navigator.userAgent;
  if(ua.indexOf('Mac') != -1){
    window.open(img,'','width=200,height=200,resizable=1');
  } else {
    foto1= new Image();
    foto1.src=(img);
    LargePics2(img,title2);
  }
}
function LargePics2(img,title2){
  if((foto1.width!=0)&&(foto1.height!=0)){
    LargePics3(img,title2,foto1.width,foto1.height);
  }
  else{
    funzione="LargePics2('"+img+"',\""+title2+"\")";
    intervallo=setTimeout(funzione,20);
  }
}
function LargePics3(img,title2,w,h){
  if(w>800)w=800
  if(h>600)h=600
  largh=w+40;
  altez=h+80;
  stringa="width="+largh+",height="+altez;
  newWind=window.open("","",stringa);
		 output="<HTML><HEAD><title>"+title2+"</title></HEAD><BODY bgcolor=white><CENTER>"
		 	output+="<TABLE BORDER='0'><TR><TD>"
		 output+="<IMG SRC='"+img+"' width="+w+" height="+h+" >"
		 	output+="</TD></TR></TABLE>"
		 output+="<FORM><TABLE BORDER='0'><TR><TD><INPUT TYPE='button' VALUE='Close' onClick='self.close()'>"
		 output+="</TD></TR></TABLE></FORM></CENTER></BODY></HTML>"
		 newWind.document.write(output);
		 newWind.document.close();
 		 newWind.focus();
}
