<!--
    function NewWin(x){
        Win = window.open('', 'Rozvrh',
              'toolbar=no,menubar=no,location=no,directories=no,'+
              'scrollbars=yes,resizable=yes,status=no,'+
              'width=600,height=400,top=150,left=150');
		if (x=="")
		{
			Win.document.write("<html>");
		    Win.document.write("<title>Obrázek "+x+"</title>");
		    Win.document.write("<body bgcolor='#F2F2CC' OnCLick='self.close()';>");
			Win.document.write("<h3><center>Nebyl proveden výběr!</center></h3>");
			Win.document.write("</body>");
			Win.document.write("</html>");
		}
		else
	{
		Win.document.write("<html>");
		Win.document.write("<title>Obrázek "+x+"</title>");
		Win.document.write("<body bgcolor='#F2F2CC' OnCLick='self.close()';>");
		Win.document.write("<center><img src='obrazky/foto/"+x+"'></center>");
		Win.document.write("</body>");
		Win.document.write("</html>");
	}
      }
    // -->
