////////////////////////////////////////
// Просмотр изображения в окне
function OpenImage (ID) {
  var URL = '/gallery/?mode=image&id='+ID;

  //позиция окна...
  Width = 400;
  Height = 300;
  var Left = 200;
  var Top = 200;
  if (null != screen) {
    Left = Math.round((screen.width - Width) / 2);
    Top = Math.round((screen.height - Height) / 2);
  };

  //открытие окна...
  open(URL, 'view_image'+ID, 'menu=0,toolbar=0,status=0,resizable,scrollbars=yes,width='+Width+',height='+Height+',top='+Top+',left='+Left);

  return false;
};

