function imgdisp(xImage,w,h,txt){
    var xImg = new Image(w,h); xImg.src=xImage;
    var xWidth=xImg.width+36; xHeight=xImg.height+60;
    var popup=window.open("","","width="+xWidth+", height="+xHeight)
    popup.resizeTo(xWidth,xHeight);
    d=popup.document;
    d.write('<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1257">');	
    d.write('<title>foto &copy; 2005 Līksna</title></head>');
    d.write('<Body bgcolor="ffffe1"><center><form>');
	d.write('<font face=Arial,Helvetica,sans-serif size=-2>');
    d.write('<img name="img" galleryimg="false"  src="" alt="" width='+w+' height='+h+' border="0">');	
    d.write('<b>' +txt+ '</b>');
    d.write('</font></form></center></body></html>');
    d.images["img"].src=xImage;
    d.close();
}




