/* gallery.js       01.00.002 - Javascript */
var myTWin = window.myTWin;
var myTWinRunning = false;
function img_ZoomImage(n,w,h,d)
{
  if (myTWinRunning) return true;
  myTWinRunning = true;
  
  retValue  = true;
  imgAlt    = 'obrázek';
  imgTitle  = 'obrázek';
  winTop    = 10;
  winLeft   = 10;
  //alert('descript=' + d);
  if (myTWin!=null && !myTWin.closed)
  { 
    if (!myTWin.screenX)
    {
      winLeft = myTWin.screenLeft;
      winTop  = myTWin.screenTop;
    }
    else
    {
     winTop = myTWin.screenY;
     winLeft = myTWin.screenX;
    }
    //alert(winTop + ' - ' + winLeft);
    myTWin.close();
  }
  myTWin = window.open('','gallery_zoom','left=' + winLeft + ', top=' + winTop + ', '
    	+ 'width=' + w + ', height=' + h + ', '
      + 'toolbar=no, location=no, directories=no, menubar=no, ' 
      + 'scrollbars=no, resizeble=no, copyhistory=no');
     
  with (myTWin)
    {
      document.write('<?xml version="1.0" encoding="UTF-8"?>');
      document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" ' 
					+ '"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">');
    	document.write('<html xmlns="http://www.w3.org/1999/xhtml">');
      document.write('<head>');
      document.write('<title>' + d + '</title>');
      document.write('<style type="text/css" >');
      document.write('  <!--');
      document.write('  html, body, img {cursor: pointer; margin: 0px; padding: 0px;}');
      document.write('-->');
      document.write('</style>');
      document.write('</head>');
      document.write('<body>'); // topmargin=0 leftmargin=0 ' + 'marginwidth="0" marginheight="0" >');
      document.write('<img src="' + n.href + '" '
      	+ 'width="' + w + '" height="' + h + '" '
        + 'alt="' + imgAlt + '" '
      	+ 'onclick="javascript: window.close();">');
      document.write('</body>');
      document.write('</html>');  
    }
  myTWin.focus();
  myTWinRunning = false;  
  return retValue;
}

