function zoom(fotka,alt,w,h)
{
  no=window.open("","foto","left=0,top=0,width="+w+",height="+h+","+
     "toolbar=no,location=no,directories=no,status=no,menubar=no"+
     ",scrollbars=no,resizable=no,copyhistory=no");

  with (no.document)
  {
    open();
    write('<HTML>\n<head><title>'+alt+' - Zahradnictví Korner &reg;</title><link href="styl.css" rel="stylesheet" type="text/css"></SCRIPT><style type="text/css"><!--body {margin-left: 0px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px; background-color: #000000;}--></style></head><BODY>');
    write('<IMG SRC="'+fotka+'" width="'+w+'" height="'+h+'" name="obr" class="klikaci_bezramu" onClick="javascript: window.close();" alt="'+alt+'"></body></html>');
    close();
    no.focus();
  }
}

