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;
	finestra=window.open("","",stringa);
	// finestra.document.write('<html><head></head><body background="'+img+'" style="background-repeat:no-repeat;"></body></html>');
	finestra.document.write('<html><head></head><body background="'+img+'" style="background-repeat:no-repeat;" onclick="self.close()"><div style="background:#ffffff; position:absolute; top:0; right:0; font-family:verdana; font-size:10px; color:#000; height:14px;"><img src="http://pluq.de/bplan/gfx/cross.jpg"></div> </body></html>');
	finestra.document.close();
}
