function zoom(name,width,height)
	{
	  var properties = 'height='+height+',width='+width+',scrollbars=yes,resizable=no,toolbar=no,location=no'+
	                   ',directories=no,status=no,menubar=no';
	  win=window.open("","okno", properties);
	  
	  with (win.document)
	  {
	   open();
	   writeln('<html>\n<head><title>detail fotky</title></head>\n<body topmargin="0" leftmargin="0">');
	   writeln('<img src="images/fotky/'+name+'.jpg" />');
	   writeln('</body>\n</html>');
	   close();
	   }
	  }