var myTWin = window.myTWin;
    
    function OpenMyWin(link,winName,sirka,vyska,popisek)
    {
      var retValue=true;
      if (myTWin!=null && !myTWin.closed)
      {
        myTWin.focus();
        myTWin.location.href=link.href;
      }
      else
      {
      //'width='+sirka+',height='+vyska+',scrollbars=0,resizable=0,toolbar=1'
        myTWin=window.open(link.href,winName,
		"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width="+sirka+",height="+vyska);
        myTWin.document.open('text/html');
        myTWin.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n');
        myTWin.document.write('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs" lang="cs">\n');
        myTWin.document.write('<head>\n');
        myTWin.document.write('<meta http-equiv="content-type" content="text/html; charset=utf-8" />\n');
        myTWin.document.write('<title>'+popisek+' - DD Pneu</title>\n');
        myTWin.document.write('<style>body { font:81.25%/1.4 Verdana,sans-serif; margin: 0; padding: 0; text-align: center; } #crumb {width:100%} img { border-style: none; }</style>\n');
        myTWin.document.write('</head>\n');
        myTWin.document.write('<body>\n');
        myTWin.document.write("<a  href=\"javascript:window.close('close')\">\n");
        myTWin.document.write('<img src=\"'+link.href+'\"');
        myTWin.document.write(' width=\"'+sirka+'\" height=\"'+vyska+'\" alt="'+popisek+'" /></a>\n');
        myTWin.document.write('</body>\n');
        myTWin.document.write('</html>');        
        myTWin.document.close();
        if (myTWin==null || typeof(myTWin)=="undefined")
          retValue=false;
        else
        {
          link.target=winName;
          myTWin.focus();
        }
      }
      return retValue;
    }

