function display(txt,img)
{ 
 var w = window.open("","Display","width=550,height=550,resizable=yes");
 var d = w.document;
 
 d.write('<html><head><title>');
 d.write('www.salzgeber.at - ' + txt);
 d.write('</title><link rel="stylesheet" href="/astro/Astro.css" type="text/css"></head><body>');
 d.write('<div class="galleryBoxHead">&nbsp;<span align="left"> ' + txt + '</span> - ');
 d.write('<span align="right"><a href="javascript:onclick=self.close()">close window</a></span></div>'); 
 d.write('<div class="galleryBoxBody" align="center"><IMG SRC="'+ img + '"><p></div>');
 d.write('</body></html>');
 w.focus();  
 d.close();
}


