function imgdisp(xImage,w,h,txt){
    var xImg = new Image(w,h); xImg.src=xImage;
    var xWidth=xImg.width+36; xHeight=xImg.height+90;
    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=UTF-8">');
    d.write('<title>Latgales Laiks</title>');
    d.write('<style type="text/css">html,body {margin: 0; border: 0; padding: 0;}</style>');
    d.write('</head>');
    d.write('<body bgcolor="White"><center>');
    d.write('<FONT face=Arial,Helvetica,sans-serif size=-2>');
    d.write('<img style="margin-top: 5px;" name="img" src="" alt="" width='+w+' height='+h+'border=5" onClick="window.close();">');
    d.write('<div style="margin-top: 3px; font-weight: bold;">' +txt+ '</div>');
    d.write('</font></center></body></html>');
    d.images["img"].src=xImage;
    d.close();
}
