function styl()
{
	
	x = screen.Width;

	if (x < 1100)
	{
		var head = document.getElementsByTagName("head")[0];
		var link = document.createElement("link");
		link.rel = "stylesheet";
		link.type = "text/css";
		link.href = "lessDpi.css";
		head.appendChild(link);
	}	

}


function okno(oWidth, oHeight, pathFoto)
{
var colorBg = "#333333"						// barva pozadí
var colorFnt = "white"						// barva písma

nove=window.open( "","_blank","menubar=0,width="+ oWidth +", height="+ oHeight +"");
nove.document.write("<head>");
nove.document.write("<title>GALERIE </title>");
nove.document.write("<meta http-equiv='Content-Type' content='text/html; charset=utf-8'>");
nove.document.write("</head>");
nove.document.write("<body topmargin='0' leftmargin='0' style='background-color:"+ colorBg +";font: 8pt Verdena, Geneva, sans-serif;'>");
nove.document.write("<div style='position: absolute;text-align: center;width: 40%;height: 10%;top: 45%;left: 30%;color:"+ colorFnt +"'>");
nove.document.write("LOADING ...</div>");
nove.document.write("<div style='position: absolute;top:0px;left:0px;'>");
nove.document.write("<div align='center'><img border='0' src='"+ pathFoto +"' onclick='window.close()' style='cursor:hand' title='kliknutím zavřete okno'></div></div>");
return true;
}


