function manageIt() {
  if (!document.getElementsByTagName) return;
  var anchors = document.getElementsByTagName('a');
  for (var i = 0; i < anchors.length; i++) {
    var anchor = anchors[i];
    if (anchor.getAttribute('href') && anchor.getAttribute('rel') == 'foto-item') anchor.onclick = openIt;
  }
}

function openIt() {
  var hWnd = window.open('','fotoWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=800,height=800');
  if (hWnd) {
    hWnd.document.write('<html><head><title>'+this.getAttribute('title')+'</title><style type="text/css">body {margin: 0; padding: 0; text-align: center;} img {border: 0;}</style></head><body onload="fotoInit()">');
    hWnd.document.write('<a href="javascript:self.close()"><img src="'+this.getAttribute('href')+'" alt="'+this.getAttribute('title')+'" title="'+this.getAttribute('title')+' zavøít/close"></a>');
    hWnd.document.write('<script type="text/javascript">function fotoInit() {window.focus(); var img = new Image(); img.src = "'+this.getAttribute('href')+'"; window.resizeTo(img.width + 10, img.height + 30);}</script>');
    hWnd.document.write('</body></html>');
    hWnd.document.close();
    return false;
  } else {
    return true;
  }
}

window.onload = manageIt;