// Функция открытия страницы в новом окне
function openwin(link, scroll, width, height)
{
  str = '"menubar=no,';
  if (scroll == "yes") str += ' scrollbars=yes,';
  str += ' width=' + width + ', height=' + height + '"';
  win = window.open(link, "", str);
  win.moveTo(screen.availWidth/2 - width/2, screen.availHeight/2 - height/2);
}



// Функция показа скрытого слоя с фотографией
function show_img(db, photo, text, w, h)
{
  el = document.all['img_win'];
  el.style.left = screen.availWidth/2 - w/2;
  el.style.top = document.body.scrollTop + screen.availHeight/2 - h;
  el.style.visibility = 'visible';

  img.width = w;
  img.height = h;
  img.src = 'img.php?db=' + db + '&pic=' + photo + '&text=' + text + '&w=' + w;
}

function hide_img()
{
  document.all['img_win'].style.visibility = 'hidden';
  img.src = 'img/1x1.gif';
}