//<!--

imageWin = null; // окно с изображением

// Показать изображение в отдельном окне в центре экрана
function ShowImage(imgUrl, width, height, title) {
    if (imageWin != null && !imageWin.closed)
        imageWin.close();

    features = '';
    if (width != null) {
        features += 'width=' + width + ',';
        features += 'left=' + (screen.width - width) / 2 + ',';
    }
    if (height != null) {
        features += 'height=' + height + ',';
        features += 'top=' + (screen.height - height) / 2 + ',';
    }

    imageWin = window.open('', 'ImageWin', features + 'toolbar=no,status=no,location=no,scrollbars=yes,resizable=yes');
    doc = imageWin.document;
    doc.open();
    doc.write('<html><head><title>' + title + '</title></head>');
    doc.write('<body style="text-align: center"><img src="' + imgUrl + '" alt="' + title + '">');
    doc.write('</body></html>');
    doc.close();
}

//-->
