function open_img(sirkaFotky,vyskaFotky,name,title)
{
  var vyska = screen.availHeight;
  var sirka = screen.availWidth;  

	var URI = 'pic/fotky/'+name+'.jpg';

  dyn_okno = window.open("","Fotka", "height="+vyska+", width="+sirka+", top=0, left=0, status=no, toolbar=no,location=no, scrollbars=yes, resizable=yes");
  dyn_okno.document.write("<html><head><meta http-equiv=\"Content-type\" content=\"text/html; charset=UTF-8\"></head>");
  dyn_okno.document.write("<body>");
  dyn_okno.document.write("<img src=\""+URI+"\" border=\"0\" width=\""+sirkaFotky+"\" height=\""+vyskaFotky+"\" alt=\""+title+"\"><br>");
  dyn_okno.document.write("<p align=\"center\"><b>"+title+"</b></p>");
	dyn_okno.document.write('<p style="text-align: center; cursor: pointer;" onclick="window.close()">[ ZAVŘÍT ]</p>');
  dyn_okno.document.write('</body></html>');
  document.close();
}

function openImgWindow(path, width, height, title)
{
  var heightWindow = height + 100;
  var widthWindow = width + 100;
  dyn_okno = window.open("","dyn_okno", "height="+heightWindow+"px, width="+widthWindow+"px, top=0, left=0, resizable=no, status=no, toolbar=no,location=no, scrollbars=yes, resizable=yes");
  dyn_okno.document.write("<html><head><title>"+title+"</title><meta http-equiv=\"Content-type\" content=\"text/html;	charset=UTF-8\"><link rel=\"stylesheet\" type=\"text/css\" href=\"css/style.css\"></head><body bgcolor=\"#dddddd\">");
  dyn_okno.document.write("<div class=\"imgJS\" style=\"width: "+(width+10)+"px;\">");
  dyn_okno.document.write("<img src=\"pic/"+path+"\" border=\"0\" class=\"fotoImg\" width=\""+width+"\" height=\""+height+"\"	alt=\""+title+"\">");
	dyn_okno.document.write("<p class=\"fotoCenter\">"+title+"<br>");
	dyn_okno.document.write("<a href=\"javascript:window.close()\">[ ZAVŘÍT OKNO ]</a></p>");
  dyn_okno.document.write('</div></body></html>');
  dyn_okno.document.close();
}
