 
function openImage(image, titul, id)
{
    if (!image) return false;
    var win = new PopupWindow();
    win.autoHide();
    win.setSize(1, 1);
    if (!titul) titul = image;
    
    var width_fix = "4";
    var agt = navigator.userAgent.toLowerCase();
    if (agt.indexOf("msie") != -1) width_fix = "12";

    html = '<html><head>';
    html += '<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">';
    html += '<title>' + titul + '</title>';
    html += '</head><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><table border="0" cellpadding="0" cellspacing="0" align="center"><tr>';
    html += '<td align="center" valign="middle"><img border="0" id="openimage" src="' + image + '" alt="' + titul + '" onclick="javascript: window.close(); return false;" onload="window.resizeTo(this.width+' + width_fix + ',this.height+60);"></td>';
    html += '</tr></table></body></html>';
    win.populate(html);
    win.showPopup(id);
    return false;
}
