function noveoknoOpen(origW, origH, alt, cesta)
{
textVlastnosti = "menubar=0, width=" + origW + ", height=" + origH;
	noveokno=window.open( "","foto",textVlastnosti );
	noveokno.document.write("<head>");
	noveokno.document.write("<title>Náhled: "+ alt +" </title>");
	noveokno.document.write("<meta http-equiv='Content-Type' content='text/html; charset=utf-8'>");
	noveokno.document.write("</head>");
	noveokno.document.write("<body topmargin='0px' leftmargin='0px' bgcolor='#FFAD14'>");
	noveokno.document.write("<div style='position: absolute;text-align: center;width: 40%;height: 10%;top: 45%;left: 30%;'>Kliknutím foto zavři.</div>");
	noveokno.document.write("<div style='position: absolute'><img border='0' src='"+ cesta +"' onclick='window.close()' style='cursor:hand' title='Kliknutím zavřete okno.'></div>");
}

