function show_img(img,width,height){
   var a
   var b
   var url
   vidWindowWidth=width;
   vidWindowHeight=height;
   a=(screen.height-vidWindowHeight)/5;
   b=(screen.width-vidWindowWidth)/2;
   features="top="+a+",left="+b+",width="+vidWindowWidth+",height="+vidWindowHeight+",toolbar=no,menubar=no,location=no,directories=no,scrollbars=no,resizable=no";
   url="show.php?img="+img;
   my_win = window.open('','',features,true);
   my_win.document.write("<html><body style='margin:0;padding:0'><div align=center>");
   my_win.document.write("<a href='javascript:window.close()' title='Клик мышкой - закрыть'><img src='images/"+img+"' alt='' border='0'></a><br>");
   my_win.document.write("</body></html>");
   my_win.document.close();
}
