function CaricaFoto(img,tit){	
  foto1= new Image();
  foto1.src=(img);
  Controlla(img,tit);
}
function Controlla(img,tit){
  if((foto1.width!=0)&&(foto1.height!=0)){
    viewFoto(img,tit);
  }
  else{
    funzione="Controlla('"+img+"')";
    intervallo=setTimeout(funzione,20);
  }
}
function viewFoto(img,tit){
  largh=foto1.width+20;
  altez=foto1.height+20;
  var winl = (screen.width - largh) / 2;
  var wint = (screen.height - altez) / 2;
  stringa="width="+largh+",height="+altez+",top="+wint+",left="+winl;
  finestra=window.open("",tit,stringa);

  finestra.document.write("<head><title></title><body bgcolor='#f9f8fe' topmargin='8' leftmargin='0'><div align='center' valign='middle'><img src='");
  finestra.document.write(img);
  finestra.document.write("' border='1' bordercolor='#39437b'></div></body></html>");
}

