function show(picture, width, height){
                                var left=(screen.width-width)/2;
                                var top=(screen.height-height)/2;
                                viewWin=window.open("","view","scrollbars=auto,status=no,resizable=no,left="+left+",top="+top+",width="+width+",height="+height);
                                viewWin.focus();
                                viewWin.document.open();
                                viewWin.document.write('<html>');
                                viewWin.document.write('<head><meta http-equiv="Content-Type" content="text/html; charset=windows-1251"><title>viGLINA.ru </title></head>');
                                viewWin.document.write('<body style="margin:0; padding:0;"><img src="'+picture+'" width="'+width+'"  height="'+height+'" alt="Ùåë÷¸ê çàêðîåò îêíî" border="0" onclick="window.close();" style="cursor: pointer"/></body>');
                                viewWin.document.write('</html>');
                                viewWin.document.close();
                }