/*
    function Auf(img) { 
    bild = new Image();
		bild.src=img; 	
		breite = bild.width;
		hoehe = bild.height;
		alert (hoehe);
		alert (breite);
    fenster = open('', '', 'height='+ hoehe + 'px, width='+ breite + 'px, menubar=no,toolbar=no,scrollbars=no,resizable=no,status=no'); 
    inhalt = fenster.document; 
    newinhalt = "<html><body topmargin='0' leftmargin='0' marginwidth='0' marginheight='0'><img src='" + img + "'></body></html>"; 
    
    inhalt.open(); 
    inhalt.write(newinhalt); 
    inhalt.close(); 
    }

*/
function Foto(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;
  altez=foto1.height;
  stringa="width="+largh+",height="+altez+",menubar=no,toolbar=no,scrollbars=no,resizable=no,status=no";
  fenster=window.open("","",stringa);
  inhalt = fenster.document; 
    newinhalt = "<html margin='0'><body topmargin='0' leftmargin='0' marginwidth='0' marginheight='0'><img style='cursor:pointer;' onclick='window.close();' src='" + img + "'></body></html>"; 
    
    inhalt.open(); 
    inhalt.write(newinhalt); 
    inhalt.close(); 
}