function showImage(image, width, height) {
    x = (screen.width - width)/2;
    y = (screen.height - height)/2;
	
	var win1 = window.open('', '', "scrollbars:yes, width="+width+", height="+height+", left="+x+", top="+y+", toolbar=no, statusbar=no, resizable=no, scrollbar=yes");
    win1.document.open();
    win1.document.writeln("<html><head>");
	win1.document.writeln("<title>Cамарские горизонты:</title>");
    win1.document.writeln("<style>body { margin:0; padding:0} a, img{border:0 } </style></head><body>");
    win1.document.writeln("<a href=\"javascript:window.close()\"><img class=\"shot\" width=\""+width+"\" height=\""+height+"\" src=\""+image+"\"></a>");
    win1.document.writeln("</body></html>");
}