function openWindow(href) 
{
  moreWin = window.open("/scripts/image.php?i=" + href, "Фотография", "resizable=yes,status=no,toolbar=no,menubar=no,scrollbars=yes,location=no,width=420,height=350");
  moreWin.focus();
  return false;
}

function closeWindow(url)
{
  if (opener)
  {
    if (opener.closed)
      window.open(url, "");
    else if (opener.location.href.search(url) == -1)
      opener.location.href = url;
    self.close();
    return false;
  }
  return true;
}


function resize() 
{
  var width = document.images[0].width + 30;
  var height = document.images[0].height + 70;
  window.resizeTo(width, height);
}

function opennew() 
{
  window.location="/club/home/";
}  
