function openphoto(w,h,src) {
  var wh=h;
  var ww=w;
  var winw=(screen.width-w)/2-35;
  var winh=(screen.height-h)/2-100;
  var outputwin= window.open('',"",'width='+ww+',height='+wh+',top='+winh+',left='+winw);
  var j=0, count=0;
  with (outputwin.document) {
    open();
    writeln('<html><head>');
    writeln('<title>Продукция</title>');
	writeln('<style>');
	writeln('body{margin:0px;padding:0px;}');
	writeln('div.upimg {cursor:help;}');
	writeln('</style>');
    writeln('</head><body>');
    writeln('<div onclick="window.close()" class="upimg" ><img src="'+src+'" width="'+w+'" height="'+h+'" border="0" alt="ЗАКРЫТЬ ОКНО"></div>');
    writeln("</body></html>");
    close();
  } 
  void(0);
  return false;
}
