function Foto(img, opis){ 
foto1= new Image(); 
foto1.src=(img); 
Kontrola(img, opis); 
} 
function Kontrola(img, opis){ 
if((foto1.width!=0)&&(foto1.height!=0)){ 
viewFoto(img, opis); 
} 
else{ 
funkcja="Kontrola('"+img+"', '"+opis+"')"; 
intervallo=setTimeout(funkcja,2); 
} 
} 
function viewFoto(img, opis){ 
szer=foto1.width+50; 
wys=foto1.height+90; 
string="width="+szer+",height="+wys+",resizable=0,scrollbars=yes,menubar=no, left=0, top=0"; 
wykonaj=window.open('','',string); 
wykonaj.document.write('<html><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2" /><link rel="Stylesheet" type="text/css" href="css/popup.css" /><title>Zamknij okienko</title></head><body><img src="'+img+'" alt="Obrazek" /><div class="zamknij"><a class="zamknij" href="javascript:window.close()">zamknij</a></div></body></html>');
wykonaj.document.write('<div class="opis">'+opis+'</div>');
wykonaj.document.close();
} 




