function popupImage(img, pname, W, H){
     image = new Image();
     image.src = img;

     var X = Math.round((screen.width - W) / 2);
     var Y = Math.round((screen.height - H) / 2);

     params = "toolbar=0, menubar=0, location=0, copyhistory=0, directories=0, scrollbars=0, status=no, resizable=no, width=" + W + ",height=" + H + ",left=" + X + ",top=" + Y;
     wID = window.open ('', name, params);
     with(wID.document){
          open();
          write('<hmtl><head><title>'+pname+'</title><meta http-equiv="Content-Type" content="text/html; charset=windows-1251"></head>');
			 write ('<body style="margin: 0; padding: 0; background-color: #800000;"><a href="#" onclick="window.close();" alt="www" title="Закрыть окно. Вернуться на сайт http://kamenets-tour.com">');
          write('<img src="'+img+'" border="0"/></a></body></html>');
          close();
     }
}