function ImgWin(src,title,width,height)
 {
          var param = "height="+height+",width="+width;
          var NewWin=window.open("", "", param);
          NewWin.document.write("<html><head>");
          NewWin.document.write("<title>"+title+"</title></head>");
          NewWin.document.write("<body bgcolor='#ffffff'>");
          NewWin.document.write("<center>");
          NewWin.document.write("<img src='production/"+src+"'><BR>");
          NewWin.document.write("<a href='#' style='TEXT-DECORATION: none;' onClick='self.close();'>Закрыть окно</a>");
          NewWin.document.write("</center>");
          NewWin.document.write("</body>");
          NewWin.document.write("</html>");
 }
