function fotka(nazwa){
s=nazwa.toString();
div=document.getElementById("zdjecia");
m=s.indexOf('|');

id=s.substring(0,m);
fota=s.substring((m+1),s.length);
katalog=
string='<br/>'+
'<a href="foto-'+id+'-'+fota+'.htm" rel="lyteframe" style="'+
'text-decoration:none;" ><img src="obrazek.php?obrazek=../kwatery/fotki/'+id+'/w'+fota+'.jpg&szer=280&wys224" alt=" '+
'Galeria obiektu" style="border:1px solid;border-color:#000000;"></a>';

div.innerHTML=string
} 
